20 lines
574 B
TypeScript
20 lines
574 B
TypeScript
import Typography from '@mui/material/Typography';
|
||
import Box from '@mui/material/Box';
|
||
import { Container } from '@mui/material';
|
||
|
||
export default function Home() {
|
||
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>
|
||
这个模板主要是mui库,官网:https://mui.com/material-ui/
|
||
</Typography>
|
||
</Box>
|
||
</Container>
|
||
</div>
|
||
)
|
||
} |