Files
2025-11-20 15:06:51 +08:00

20 lines
561 B
TypeScript

import Typography from '@mui/material/Typography';
import Box from '@mui/material/Box';
import { Container } from '@mui/material';
export default function Test() {
return (
<div>
<Container maxWidth="md" sx={{ py: { xs: 7, md: 16 }, textAlign: 'center' }}>
<Box sx={{ width: '100%', maxWidth: 500 }}>
<Typography variant='h1'>
</Typography><br />
<Typography>
<code>/test</code>
</Typography>
</Box>
</Container>
</div>
)
}