import css from './index.module.css'; import {Spin} from 'antd'; import {FC} from 'react'; type Props = { tip: string; width?: string; height?: string; }; const Loading: FC = function ({tip, width, height}) { return (
); }; export default Loading;