diff --git a/src/components/employ-type-select/index.tsx b/src/components/employ-type-select/index.tsx new file mode 100644 index 0000000..fb3441f --- /dev/null +++ b/src/components/employ-type-select/index.tsx @@ -0,0 +1,13 @@ +import Select, { ISelectProps } from '@/components/select'; +import { EmployType, JOB_EMPLOY_TYPE_OPTIONS } from '@/constants/job'; + +interface IProps extends Omit, 'options'> { + value: EmployType; +} + +function EmployTypeSelect(props: IProps) { + const { value: selectValue, onSelect } = props; + return