change some files
This commit is contained in:
27
ui/forms/workExperience/constant/index.ts
Normal file
27
ui/forms/workExperience/constant/index.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import type { WorkExperienceFormItem, WorkExperienceFormValues } from "../types";
|
||||
|
||||
export const WORK_EXPERIENCE_EMPTY_ITEM: WorkExperienceFormItem = {
|
||||
id: "",
|
||||
hasNoExperience: false,
|
||||
companyName: "",
|
||||
lastPosition: "",
|
||||
startYear: "",
|
||||
endYear: "",
|
||||
leavingReason: "",
|
||||
description: "",
|
||||
};
|
||||
|
||||
export const WORK_EXPERIENCE_NO_EXPERIENCE_ITEM: WorkExperienceFormItem = {
|
||||
id: "",
|
||||
hasNoExperience: true,
|
||||
companyName: "",
|
||||
lastPosition: "",
|
||||
startYear: "",
|
||||
endYear: "",
|
||||
leavingReason: "",
|
||||
description: "",
|
||||
};
|
||||
|
||||
export const WORK_EXPERIENCE_EMPTY_VALUES: WorkExperienceFormValues = {
|
||||
workExperiences: [{ ...WORK_EXPERIENCE_EMPTY_ITEM }],
|
||||
};
|
||||
Reference in New Issue
Block a user