路由懒加载 + loading

This commit is contained in:
none
2023-03-21 13:45:43 +08:00
parent a0a6744404
commit a5a57c1b99
3 changed files with 16 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
import { Spin } from "antd";
const LoadingPage = () => {
return (
<>
<Spin />
</>
);
};
export default LoadingPage;