link-stack/packages/bridge-ui/components/Home.tsx
2024-05-16 18:22:10 +02:00

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>
);
};