Files
hounam-submit-form-frontend/ui/forms/jobInfo/constant/index.ts
2026-06-02 17:08:52 +03:30

21 lines
554 B
TypeScript

import type { JobInfoFormData } from "../types";
export const INITIAL_JOB_INFO_VALUES: JobInfoFormData = {
readyToWorkDate: "",
isCurrentEmployee: false,
hasPastCooperation: false,
isCurrentlyEmployed: false,
dualJobInterest: false,
retirementStatus: "None",
isMilitary: false,
hasInsurance: false,
insuranceType: "",
totalInsuranceYears: "0",
};
export const retirementOptions = [
{ value: "None", label: "هیچکدام" },
{ value: "Retired", label: "بازنشسته" },
{ value: "Redeemed", label: "بازخرید" },
];