mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-14 08:15:08 +00:00
22 lines
489 B
TypeScript
22 lines
489 B
TypeScript
// ** MUI Imports
|
|
import Grid from '@mui/material/Grid'
|
|
|
|
// ** Demo Components Imports
|
|
import TypographyTexts from '../views/typography/TypographyTexts'
|
|
import TypographyHeadings from '../views/typography/TypographyHeadings'
|
|
|
|
const TypographyPage = () => {
|
|
return (
|
|
<Grid container spacing={6}>
|
|
<Grid item xs={12}>
|
|
<TypographyHeadings />
|
|
</Grid>
|
|
<Grid item xs={12}>
|
|
<TypographyTexts />
|
|
</Grid>
|
|
</Grid>
|
|
)
|
|
}
|
|
|
|
export default TypographyPage
|