Skip to main content
Version: 3.xx.xx

basic-usage-live-preview

localhost:3000
Live previews only work with the latest documentation.
import { useSelect, Select } from "@pankod/refine-antd";

interface ICategory {
id: number;
title: string;
}

const PostCreate: React.FC = () => {
const { selectProps } = useSelect<ICategory>({
resource: "categories",
});

return (
<Select
placeholder="Select a category" style={{ width: 300 }}
{...selectProps}
/>
);
};