link-stack/packages/leafcutter-ui/components/LeafcutterWrapper.tsx

7 lines
210 B
TypeScript
Raw Permalink Normal View History

2023-08-25 07:11:33 +00:00
import { FC, PropsWithChildren } from "react";
import { Box } from "@mui/material";
export const LeafcutterWrapper: FC<PropsWithChildren> = ({ children }) => {
return <Box sx={{ p: 3 }}>{children}</Box>;
};