2024-02-18 01:44:48 -05:00

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