Version: 4.xx.xx
Swizzle Ready
Text
This field lets you show basic text. It uses Material UI's <Typography> component.
Good to know:
You can swizzle this component to customize it with the Refine CLI
Usageโ
Let's see how to use it in a basic list page:
// visible-block-start
import {
useDataGrid,
List,
TextFieldComponent as TextField,
} from "@refinedev/mui";
import { DataGrid, GridColDef } from "@mui/x-data-grid";
const columns: GridColDef[] = [
{ field: "id", headerName: "ID", type: "number" },
{
field: "title",
headerName: "Title",
renderCell: function render({ row }) {
return <TextField value={row.title} />;
},
minWidth: 100,
flex: 1,
},
];
const PostsList: React.FC = () => {
const { dataGridProps } = useDataGrid<IPost>();
return (
<List>
<DataGrid {...dataGridProps} columns={columns} autoHeight />
</List>
);
};
interface IPost {
id: number;
title: string;
}
// visible-block-end
render(
<RefineMuiDemo
resources={[
{
name: "posts",
list: PostsList,
},
]}
/>,
);
API Referenceโ
Propertiesโ
External Props:
It also accepts all props of Material UI Typography.