mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-04-14 22:10:32 +08:00
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;
|