14 lines
297 B
TypeScript
14 lines
297 B
TypeScript
|
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;
|