mirror of
https://github.com/PlayEdu/h5.git
synced 2025-06-13 13:18:38 +08:00
12 lines
267 B
TypeScript
12 lines
267 B
TypeScript
import { SpinLoading } from "antd-mobile";
|
|
|
|
const LoadingPage = () => {
|
|
return (
|
|
<div style={{ width: "100vw", height: "100vh", display: "flex", justifyContent: "center" }}>
|
|
<SpinLoading color="primary" />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default LoadingPage;
|