import type { SelectProps } from 'antd'; import { Select as AntSelect } from 'antd'; import { useMemo } from 'react'; export function Select({ options = [], ...props }: SelectProps) { const optionsWithNull = useMemo( () => [ { label: 'Не выбрано', value: null, }, ...options, ], [options] ); return ; }