10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import { FC } from "react";
|
|
import { Box } from "@mui/material";
|
|
|
|
export const Home: FC = () => {
|
|
return (
|
|
<Box sx={{ p: 3, fontSize: 30, fontWeight: "bold", textAlign: "center" }}>
|
|
Overview
|
|
</Box>
|
|
);
|
|
};
|