import { CSSProperties, ReactNode } from 'react' import { Col, Row } from 'antd' import { useAppWidth } from 'hooks/useUI' export type LayoutBodyProps = { children?: ReactNode style?: CSSProperties } const LayoutBody = ({ children, style }: LayoutBodyProps) => { const width = useAppWidth() return (
{children}
) } export default LayoutBody