Passing props to create component
When I click the create button for my resource and it redirects me to that resource, is there a way for me to pass props to it?
CreateButtonCreateButtonCreateButtonresourcecreatecreatecreateuseNavigationNote: you can ask me a follow up question by @ mentioning me againimport { CreateButton } from "@refinedev/antd";
const MyCreateComponent = () => {
return (
<CreateButton
resource="categories"
/>
);
};