remove field name
This commit is contained in:
@@ -21,10 +21,10 @@ function Connect() {
|
||||
<div className="mt-[40px] flex flex-col gap-[20px]">
|
||||
<div className="flex flex-col sm:flex-row items-center justify-center gap-[24px] sm:gap-[21px] md:gap-18px] lg:gap-[16px]">
|
||||
<FieldLabel title="نام و نام خانوادگی">
|
||||
<Field title="احسان احمدی" type="text" />
|
||||
<Field isPlaceHolder={true} title="" type="text" />
|
||||
</FieldLabel>
|
||||
<FieldLabel title="شماره موبایل">
|
||||
<Field title="09121056987" type="text" />
|
||||
<Field isPlaceHolder={true} title="09123456789" type="text" />
|
||||
</FieldLabel>
|
||||
</div>
|
||||
<div>
|
||||
|
||||
@@ -12,7 +12,7 @@ function AddDoctorPage() {
|
||||
const [value, setValue] = useState(0);
|
||||
const [data, setData] = useState({
|
||||
general: {
|
||||
name: { value: "", placeholder: "احسان احمدی", isEdit: true },
|
||||
name: { value: "", placeholder: "", isEdit: true },
|
||||
medical_system_number: {
|
||||
value: "",
|
||||
placeholder: 1741025645,
|
||||
|
||||
@@ -17,8 +17,8 @@ const validate_phone_number = {
|
||||
|
||||
function Form() {
|
||||
const [data, setData] = useState({
|
||||
name: { value: "احسان احمدی", isEdit: true },
|
||||
national_code: { value: "123456789", isEdit: true },
|
||||
name: { value: "", isEdit: true },
|
||||
national_code: { value: "", isEdit: true },
|
||||
address: { value: "", isEdit: true },
|
||||
phone: { value: "", isEdit: true },
|
||||
account_number: { value: "", isEdit: true },
|
||||
|
||||
@@ -8,7 +8,7 @@ import Tab from "./Tab";
|
||||
const listTab = ["حساب کاربری", "حساب بانکی"];
|
||||
|
||||
function UserAccountPage({ data }) {
|
||||
const [value, setValue] = useState(1);
|
||||
const [value, setValue] = useState(0);
|
||||
const [loading, setLoading] = useState(true);
|
||||
|
||||
useEffect(() => {
|
||||
|
||||
Reference in New Issue
Block a user