WIP Интегрировал форму Основных данных с беком

This commit is contained in:
DwCay
2023-04-04 19:20:14 +03:00
parent 919d1684b5
commit 1a3f00cd79
5 changed files with 121 additions and 41 deletions

View File

@@ -21,7 +21,7 @@ export const baseDataForm = [
{
key: "gender",
label: "Пол",
type: "text",
type: "select",
},
{
key: "birth_date",
@@ -98,3 +98,14 @@ export const baseDataForm = [
],
},
];
export const genderOptions = [
{
label: "Мужской",
value: "MALE",
},
{
label: "Женский",
value: "WOMEN",
},
];