feat: update
This commit is contained in:
13
src/components/top-category-select/index.tsx
Normal file
13
src/components/top-category-select/index.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
import Select, { ISelectProps } from '@/components/select';
|
||||
import { JOB_TYPE_SELECT_OPTIONS_WITH_ALL, JobType } from '@/constants/job';
|
||||
|
||||
interface IProps extends Omit<ISelectProps<JobType>, 'options'> {
|
||||
value: JobType;
|
||||
}
|
||||
|
||||
function TopCategorySelect(props: IProps) {
|
||||
const { value: selectValue, onSelect } = props;
|
||||
return <Select options={JOB_TYPE_SELECT_OPTIONS_WITH_ALL} title="品类" value={selectValue} onSelect={onSelect} />;
|
||||
}
|
||||
|
||||
export default TopCategorySelect;
|
||||
Reference in New Issue
Block a user