index.jsx 290B

1234567891011
  1. import React from 'react';
  2. import { Spin } from 'antd';
  3. import styles from './style.module.less';
  4. export default function Loading(props) {
  5. const { loading = true, ...leftProps } = props;
  6. return (
  7. <Spin {...leftProps} wrapperClassName={styles.loading} spinning={loading} />
  8. );
  9. }