link-stack/packages/bridge-ui/components/Home.tsx

11 lines
222 B
TypeScript
Raw Normal View History

2024-05-09 07:42:44 +02:00
import { FC } from "react";
2024-05-16 18:22:10 +02:00
import { Box } from "@mui/material";
2024-05-09 07:42:44 +02:00
export const Home: FC = () => {
2024-05-16 18:22:10 +02:00
return (
<Box sx={{ p: 3, fontSize: 30, fontWeight: "bold", textAlign: "center" }}>
Overview
</Box>
);
2024-05-09 07:42:44 +02:00
};