13 lines
388 B
TypeScript
13 lines
388 B
TypeScript
// import { PageLoading } from '@ant-design/pro-layout';
|
|
|
|
// // loading components from code split
|
|
// // https://umijs.org/plugin/umi-plugin-react.html#dynamicimport
|
|
// export default PageLoading;
|
|
import React from 'react';
|
|
import SkeletonLoading from '../SkeletonLoading';
|
|
|
|
const PageLoading: React.FC = () => {
|
|
return <SkeletonLoading type="page" />;
|
|
};
|
|
|
|
export default PageLoading; |