index.js 264 Bytes
Newer Older
1 2
import { Spin } from 'antd';

yzl's avatar
yzl committed
3
export default props => {
4 5 6 7 8 9 10
  const { loading } = props;

  const style = {
    position: 'absolute',
    top: '50%',
    left: '50%',
    transform: 'translate(-50%, -50%)',
yzl's avatar
yzl committed
11
  };
12

yzl's avatar
yzl committed
13 14
  return <Spin spinning={loading} style={style} />;
};