<Create> provides us a layout to display the page. It does not contain any logic and just adds extra functionalities like action buttons and giving titles to the page.
We will show what <Create> does using properties with examples.
title allows the addition of titles inside the <Create> component. If you don't pass title props it uses "Create" prefix and singular resource name by default. For example, for the /posts/create resource, it would be "Create post".
localhost:3000/posts/create
import{Create}from"@refinedev/mui"; import{Typography}from"@mui/material"; constCreatePage:React.FC=()=>{ return( <Create title={<Typographyvariant="h5">Custom Title</Typography>} > <span>Rest of your page here</span> </Create> ); };
The <Create> component reads the resource information from the route by default. If you want to use a custom resource for the <Create> component, you can use the resource prop.
localhost:3000/custom
import{Create}from"@refinedev/mui"; constCustomPage:React.FC=()=>{ return( <Createresource="posts"> <span>Rest of your page here</span> </Create> ); };
If you have multiple resources with the same name, you can pass the identifier instead of the name of the resource. It will only be used as the main matching key for the resource, data provider methods will still work with the name of the resource defined in the <Refine/> component.
The <Create> component has a default button that submits the form. If you want to customize this button you can use the saveButtonProps property like the code below:
localhost:3000/posts/create
import{Create}from"@refinedev/mui"; constPostCreate:React.FC=()=>{ return( <CreatesaveButtonProps={{ size:"small"}}> <span>Rest of your page here</span> </Create> ); };
You can customize the buttons at the header by using the headerButtons property. It accepts React.ReactNode or a render function ({ defaultButtons }) => React.ReactNode which you can use to keep the existing buttons and add your own.
By default, the <Create/> component has a <SaveButton> at the header.
You can customize the buttons at the footer by using the footerButtons property. It accepts React.ReactNode or a render function ({ defaultButtons, saveButtonProps }) => React.ReactNode which you can use to keep the existing buttons and add your own.
Or, instead of using the defaultButtons, you can create your own buttons. If you want, you can use saveButtonProps to utilize the default values of the <SaveButton> component.
localhost:3000/posts/create
import{Create,SaveButton}from"@refinedev/mui"; import{Button}from"@mui/material"; constPostCreate:React.FC=()=>{ const[loading, setLoading]=React.useState(true); return( <Create footerButtons={({ saveButtonProps })=>( <> <SaveButton{...saveButtonProps}type="primary"sx={{ marginRight:8}}> Save </SaveButton> <Buttontype="primary">Custom Button</Button> </> )} > <span>Rest of your page here</span> </Create> ); };