blob: e4c8edab18f18f01d131887f8543488444b66e7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import Spinner from "@/views/common/Spinner";
import "./index.css";
export default function LoadingPage() {
return (
<div className="loading-page">
<Spinner />
</div>
);
}
|