clash-verge/src/pages/home.tsx
2021-12-08 23:36:34 +08:00

12 lines
209 B
TypeScript

import { Typography } from "@mui/material";
const HomePage = () => {
return (
<Typography variant="h1" textAlign="center" mt={10}>
Hello Clash!
</Typography>
);
};
export default HomePage;