import { Layout, Spin } from 'antd' import React from 'react' interface Props { loading?: boolean } export const AuthLayout: React.FC = (props) => { return ( {props.children} ) }