You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
320 B
11 lines
320 B
import React from 'react';
|
|
import { Spin } from 'antd';
|
|
|
|
// loading components from code split
|
|
// https://umijs.org/plugin/umi-plugin-react.html#dynamicimport
|
|
const PageLoading: React.FC = () => (
|
|
<div style={{ paddingTop: 100, textAlign: 'center' }}>
|
|
<Spin size="large" />
|
|
</div>
|
|
);
|
|
export default PageLoading;
|
|
|