7 lines
210 B
TypeScript
7 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>;
|
||
|
|
};
|