import { FunctionComponent } from 'react' interface LoadingProps { className?: string } const Loading: FunctionComponent = ({ className }) => { return ( ) } export default Loading