mirror of
https://github.com/PlayEdu/frontend.git
synced 2025-07-19 08:19:43 +08:00
13 lines
214 B
TypeScript
13 lines
214 B
TypeScript
import { Spin } from "antd";
|
|
import styles from "./index.module.scss";
|
|
|
|
const LoadingPage = () => {
|
|
return (
|
|
<div className={styles.loadingBox}>
|
|
<Spin />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default LoadingPage;
|