import { Datagrid, DateField, List, TextField, ShowButton, SearchInput, ArrayField, SingleFieldList, ChipField, Show, SimpleShowLayout, NumberField, ReferenceField, BooleanField, SelectField, TabbedShowLayout, ImageField, } from 'react-admin'; import React from 'react'; 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 = () => ( {/* 面板 */} {/* 身份组 */} {/* 成员列表 */} ); GroupShow.displayName = 'GroupShow';