import React from 'react' import { List,Datagrid,TextField,EditButton,CreateButton,BooleanField } from 'react-admin' import { Typography,Box } from '@mui/material'; const Empty = () => ( <Box textAlign="center" m={1}> <Typography variant="h4" paragraph> 歌谣 </Typography> <Typography variant="body1"> 歌谣不要方 </Typography> <CreateButton /> </Box> ); const REmptyList = () => { return <List resource="t_geyao_person" empty={<Empty />}> </List> } export default REmptyList
渲染空列表