index.tsx 319 Bytes
Newer Older
1 2 3 4 5
import React from 'react';
import { Spin } from 'antd';

// loading components from code split
// https://umijs.org/plugin/umi-plugin-react.html#dynamicimport
6
const PageLoding: React.SFC = () => (
7 8 9 10
  <div style={{ paddingTop: 100, textAlign: 'center' }}>
    <Spin size="large" />
  </div>
);
11
export default PageLoding;