SelectProps Does not Exist

export const FirmList = React.FC = () => {
const { selectProps } = useSelect<CompanySize>({
resource: "CompanySize/GetCompanySizes",
optionLabel: "size",
optionValue: "id",
});

return (
<List>
<Select
style={{ width: 200 }}
placeholder="Company Size"
{...selectProps}
/>
</List>
);
};
SelectProps Does not Exist
Was this page helpful?