mirror of
https://github.com/PlayEdu/frontend.git
synced 2025-07-23 10:43:26 +08:00
Merge branch 'dev' of https://gitee.com/playeduxyz/frontend into dev
This commit is contained in:
commit
628fde1787
10
src/pages/loading/index.module.scss
Normal file
10
src/pages/loading/index.module.scss
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
.loadingBox {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
z-index: 99;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 100vh;
|
||||||
|
}
|
@ -1,10 +1,11 @@
|
|||||||
import { Spin } from "antd";
|
import { Spin } from "antd";
|
||||||
|
import styles from "./index.module.scss";
|
||||||
|
|
||||||
const LoadingPage = () => {
|
const LoadingPage = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<div className={styles.loadingBox}>
|
||||||
<Spin />
|
<Spin />
|
||||||
</>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user