Skip to main content
Version: 3.xx.xx

basic-usage-live-preview

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

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

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

return (
<label>
Select a category:
<select>
{options?.map((option) => (
<option key={option.value} value={option.value}>
{option.label}
</option>
))}
</select>
</label>
);
};