11 lines
183 B
TypeScript
11 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>
|
||
|
|
);
|
||
|
|
}
|