| | |
| | | ListBase, |
| | | Title, |
| | | Pagination, |
| | | ListToolbar, |
| | | } from 'react-admin'; |
| | | import { Box, Typography, Card, Stack } from '@mui/material'; |
| | | import { styled } from '@mui/material/styles'; |
| | |
| | | |
| | | export const AgvGrid = () => { |
| | | const { identity } = useGetIdentity(); |
| | | if (!identity) return null; |
| | | const [createDialog, setCreateDialog] = useState(false); |
| | | |
| | | if (!identity) return null; |
| | | |
| | | return ( |
| | | <> |
| | |
| | | <Title title={'Companies'} /> |
| | | <ListToolbar actions={( |
| | | <TopToolbar> |
| | | <FilterButton /> |
| | | <MyCreateButton onClick={() => { setCreateDialog(true) }} /> |
| | | <MyExportButton /> |
| | | </TopToolbar> |