link-stack/apps/link/app/(main)/leafcutter/_components/LeafcutterWrapper.tsx
Darren Clarke c620e4bf25 Flatten
2023-08-25 07:11:33 +00:00

6 lines
210 B
TypeScript

import { FC, PropsWithChildren } from "react";
import { Box } from "@mui/material";
export const LeafcutterWrapper: FC<PropsWithChildren> = ({ children }) => {
return <Box sx={{ p: 3 }}>{children}</Box>;
};