import React from 'react'; import { useTheme, type BoxProps } from '@chakra-ui/react'; import MyBox from '@fastgpt/web/components/common/MyBox'; const PageContainer = ({ children, isLoading, insertProps = {}, ...props }: BoxProps & { isLoading?: boolean; insertProps?: BoxProps }) => { const theme = useTheme(); return ( {children} ); }; export default PageContainer;