import React from "react"; import Typography from "@mui/material/Typography"; import type { TextFieldProps } from "../types"; /** * This field lets you show basic text. It uses Materail UI {@link https://mui.com/material-ui/react-typography/#main-content ``} component. * * @see {@link https://refine.dev/docs/api-reference/mui/components/fields/text} for more details. */ const TextField: React.FC = ({ value, ...rest }) => { return ( {value} ); }; export { TextField as TextFieldComponent };