link-stack/packages/leafcutter-ui/components/LeafcutterWrapper.tsx
Darren Clarke b09cc82544 WIP 5
2024-03-20 17:51:21 +01: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>;
};