mirror of
https://github.com/PlayEdu/frontend.git
synced 2025-06-10 11:14:11 +08:00
12 lines
136 B
TypeScript
12 lines
136 B
TypeScript
import { Spin } from "antd";
|
|
|
|
const LoadingPage = () => {
|
|
return (
|
|
<>
|
|
<Spin />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default LoadingPage;
|