import React from 'react'; import { Layout, theme } from 'antd'; import LayoutFooter from './LayoutFooter'; import LayoutHeader from './LayoutHeader'; import LayoutSidebar from './LayoutSidebar'; const { Content } = Layout; const MainLayout = ({ children }) => { const { token: { colorBgContainer, borderRadiusLG }, } = theme.useToken(); return ( {/*
*/} {children} {/*
*/}
{/* */}
); }; export default MainLayout;