mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-14 08:15:08 +00:00
68 lines
2.1 KiB
XML
68 lines
2.1 KiB
XML
// ** MUI Imports
|
|
import Grid from '@mui/material/Grid'
|
|
import Link from '@mui/material/Link'
|
|
import Card from '@mui/material/Card'
|
|
import Typography from '@mui/material/Typography'
|
|
import CardHeader from '@mui/material/CardHeader'
|
|
|
|
// ** Demo Components Imports
|
|
import TableBasic from '../views/tables/TableBasic'
|
|
import TableDense from '../views/tables/TableDense'
|
|
import TableSpanning from '../views/tables/TableSpanning'
|
|
import TableCustomized from '../views/tables/TableCustomized'
|
|
import TableCollapsible from '../views/tables/TableCollapsible'
|
|
import TableStickyHeader from '../views/tables/TableStickyHeader'
|
|
|
|
const MUITable = () => {
|
|
return (
|
|
<Grid container spacing={6}>
|
|
<Grid item xs={12}>
|
|
<Typography variant='h5'>
|
|
<Link href='https://mui.com/components/tables/' target='_blank'>
|
|
MUI Tables
|
|
</Link>
|
|
</Typography>
|
|
<Typography variant='body2'>Tables display sets of data. They can be fully customized</Typography>
|
|
</Grid>
|
|
<Grid item xs={12}>
|
|
<Card>
|
|
<CardHeader title='Basic Table' titleTypographyProps={{ variant: 'h6' }} />
|
|
<TableBasic />
|
|
</Card>
|
|
</Grid>
|
|
<Grid item xs={12}>
|
|
<Card>
|
|
<CardHeader title='Dense Table' titleTypographyProps={{ variant: 'h6' }} />
|
|
<TableDense />
|
|
</Card>
|
|
</Grid>
|
|
<Grid item xs={12}>
|
|
<Card>
|
|
<CardHeader title='Sticky Header' titleTypographyProps={{ variant: 'h6' }} />
|
|
<TableStickyHeader />
|
|
</Card>
|
|
</Grid>
|
|
<Grid item xs={12}>
|
|
<Card>
|
|
<CardHeader title='Collapsible Table' titleTypographyProps={{ variant: 'h6' }} />
|
|
<TableCollapsible />
|
|
</Card>
|
|
</Grid>
|
|
<Grid item xs={12}>
|
|
<Card>
|
|
<CardHeader title='Spanning Table' titleTypographyProps={{ variant: 'h6' }} />
|
|
<TableSpanning />
|
|
</Card>
|
|
</Grid>
|
|
<Grid item xs={12}>
|
|
<Card>
|
|
<CardHeader title='Customized Table' titleTypographyProps={{ variant: 'h6' }} />
|
|
<TableCustomized />
|
|
</Card>
|
|
</Grid>
|
|
</Grid>
|
|
)
|
|
}
|
|
|
|
export default MUITable
|