mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-18 02:06:30 +00:00
8 lines
286 B
TypeScript
8 lines
286 B
TypeScript
|
|
import {Box} from "@mui/material";
|
||
|
|
import {ReactNode} from "react";
|
||
|
|
|
||
|
|
export default function ToolLayout({children}: { children: ReactNode }) {
|
||
|
|
return (<Box width={'100%'} display={'flex'} flexDirection={'column'} alignItems={'center'}><Box
|
||
|
|
width={'85%'}>{children}</Box></Box>)
|
||
|
|
}
|