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