diff --git a/src/components/CustomFormComponents/FormInput/index.less b/src/components/CustomFormComponents/FormInput/index.css similarity index 100% rename from src/components/CustomFormComponents/FormInput/index.less rename to src/components/CustomFormComponents/FormInput/index.css diff --git a/src/components/CustomFormComponents/FormInput/index.tsx b/src/components/CustomFormComponents/FormInput/index.tsx index 22b9716029b89c40396773a1f3b205a043189631..cf2175ace3942c0f926aedc9f5e8e6c3b8d71335 100644 --- a/src/components/CustomFormComponents/FormInput/index.tsx +++ b/src/components/CustomFormComponents/FormInput/index.tsx @@ -1,5 +1,5 @@ import { View, Input } from "@tarojs/components"; -import "./index.less"; +import "./index.css"; interface FormInputProps { placeholder?: string; diff --git a/src/components/CustomFormComponents/Group/index.module.css b/src/components/CustomFormComponents/Group/index.css similarity index 100% rename from src/components/CustomFormComponents/Group/index.module.css rename to src/components/CustomFormComponents/Group/index.css diff --git a/src/components/CustomFormComponents/Group/index.tsx b/src/components/CustomFormComponents/Group/index.tsx index a30e7b0edc970ddf106ddeca5b5d5c2092348743..4d3bad64ee5045e613c3934dff4dd7befe23a72b 100644 --- a/src/components/CustomFormComponents/Group/index.tsx +++ b/src/components/CustomFormComponents/Group/index.tsx @@ -1,11 +1,9 @@ -import "./index.module.css"; import { useEffect, useMemo, useState } from "react"; - import { cloneDeep, isEqual } from "lodash"; import RenderComponent from "../FormComponentRender"; import { View } from "@tarojs/components"; import { Flex, Row, Col } from "@taroify/core"; - +import "./index.css"; interface GroupProps { value: boolean | string; onChange?: (value: Record[]) => void;