前端项目实战玖拾陆react-admin+material ui-踩坑-List的用法之Empty来设置空列表
我是歌谣 这里是歌谣的前端笔记小屋 想加入前端巅峰人才交流群私信我
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
渲染空列表