link-stack/apps/link/app/(main)/leafcutter/login/page.tsx

11 lines
179 B
TypeScript
Raw Normal View History

2023-08-25 07:11:33 +00:00
import { Box } from "@mui/material";
import { FAQ } from "leafcutter-common";
export default function Page() {
return (
<Box sx={{ p: 3 }}>
<FAQ />
</Box>
);
}