29 lines
919 B
TypeScript
29 lines
919 B
TypeScript
// ** MUI Imports
|
|
import Card from '@mui/material/Card'
|
|
import Grid from '@mui/material/Grid'
|
|
import Typography from '@mui/material/Typography'
|
|
import CardHeader from '@mui/material/CardHeader'
|
|
import CardContent from '@mui/material/CardContent'
|
|
|
|
const SecondPage = () => {
|
|
return (
|
|
<Grid container spacing={6}>
|
|
<Grid item xs={12}>
|
|
<Card>
|
|
<CardHeader title='Create Awesome 🙌'></CardHeader>
|
|
<CardContent>
|
|
<Typography sx={{ mb: 2 }}>This is your second page.</Typography>
|
|
<Typography>
|
|
Chocolate sesame snaps pie carrot cake pastry pie lollipop muffin.
|
|
Carrot cake dragée chupa chups jujubes. Macaroon liquorice cookie
|
|
wafer tart marzipan bonbon. Gingerbread jelly-o dragée chocolate.
|
|
</Typography>
|
|
</CardContent>
|
|
</Card>
|
|
</Grid>
|
|
</Grid>
|
|
)
|
|
}
|
|
|
|
export default SecondPage
|