change some files
This commit is contained in:
31
ui/forms/education/constants/index.ts
Normal file
31
ui/forms/education/constants/index.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
// education.constants.ts
|
||||
|
||||
import { EducationFormValues } from "../InnerEducationForm";
|
||||
import { DegreeValue} from "../types";
|
||||
|
||||
|
||||
export const EDUCATION_EMPTY_VALUES: EducationFormValues = {
|
||||
education: [
|
||||
{
|
||||
degree: "",
|
||||
field: "",
|
||||
university: "",
|
||||
startYear: "",
|
||||
endYear: "",
|
||||
gpa: "",
|
||||
certificateImageId: "",
|
||||
description: "",
|
||||
},
|
||||
],
|
||||
}
|
||||
|
||||
export const DEGREE_OPTIONS: Exclude<DegreeValue, "">[] = [
|
||||
"زیر دیپلم",
|
||||
"دیپلم",
|
||||
"کاردانی",
|
||||
"کارشناسی",
|
||||
"کارشناسی ارشد",
|
||||
"دکتری",
|
||||
"حوزوی",
|
||||
"سایر",
|
||||
];
|
||||
Reference in New Issue
Block a user