10 lines
183 B
TypeScript
10 lines
183 B
TypeScript
import { Box } from "@mui/material";
|
|
import { About } from "leafcutter-common";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<Box sx={{ p: 3 }}>
|
|
<About />
|
|
</Box>
|
|
);
|
|
}
|