import {
Datagrid,
DateField,
List,
TextField,
ShowButton,
SearchInput,
ArrayField,
SingleFieldList,
ChipField,
Show,
SelectField,
TabbedShowLayout,
ImageField,
useTranslate,
} from 'react-admin';
import { Box } from '@mui/material';
import { UserField } from '../components/UserField';
const PostListActionToolbar = ({ children, ...props }) => (
{children}
);
export const GroupList: React.FC = () => (
]}>
);
GroupList.displayName = 'GroupList';
export const GroupShow: React.FC = () => {
const translate = useTranslate();
return (
{/* 面板 */}
{/* 身份组 */}
{/* 成员列表 */}
);
};
GroupShow.displayName = 'GroupShow';