import { FC } from 'react' import './index.css' export interface RectLoadingProps { loading?: boolean } const RectLoading: FC = ({ loading }) => { if (!loading) return <> return (
) } export default RectLoading