import ObjectSelect, {ObjectSelectProps} from "../../ObjectSelect/ObjectSelect.tsx"; import {ClientSchema} from "../../../client"; import {FC} from "react"; import useClientsList from "../../../pages/ClientsPage/hooks/useClientsList.tsx"; type Props = Omit, 'data'> const ClientSelectNew: FC = (props) => { const {clients} = useClientsList(); return ( ) } export default ClientSelectNew;