12 lines
209 B
TypeScript
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;
|