import { ConfigProvider } from 'antd'; import { ReactNode } from 'react'; import { MyLoading } from './MyLoading'; export function MyRootContainer({ children }: { children: ReactNode }) { return ( {/* {children} */} {children} ); }