clash-verge/src/pages/home.tsx

12 lines
209 B
TypeScript
Raw Normal View History

2021-12-08 18:36:34 +03:00
import { Typography } from "@mui/material";
2021-12-04 09:31:26 +03:00
const HomePage = () => {
return (
2021-12-08 18:36:34 +03:00
<Typography variant="h1" textAlign="center" mt={10}>
Hello Clash!
</Typography>
2021-12-04 09:31:26 +03:00
);
};
export default HomePage;