chore: new rule page

This commit is contained in:
GyDi
2021-12-12 01:09:51 +08:00
parent 1e2e6ca8a6
commit 74b51509b6
2 changed files with 16 additions and 3 deletions

13
src/pages/rules.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { Box, Typography } from "@mui/material";
const RulesPage = () => {
return (
<Box sx={{ width: 0.9, maxWidth: "850px", mx: "auto", mb: 2 }}>
<Typography variant="h4" component="h1" sx={{ py: 2 }}>
Rules
</Typography>
</Box>
);
};
export default RulesPage;