blob: 590fafa05f07a8b6520bd82338be9776e1355b9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import React from "react";
import { Spinner } from "react-bootstrap";
const LoadingPage: React.FC = () => {
return (
<div className="position-fixed w-100 h-100 d-flex justify-content-center align-items-center">
<Spinner variant="primary" animation="border" />
</div>
);
};
export default LoadingPage;
|