blob: a849126d9d834a55c883470aeae0ce0b5de73546 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import React from "react";
import { Spinner } from "reactstrap";
const LoadingPage: React.FC = () => {
return (
<div className="position-fixed w-100 h-100 d-flex justify-content-center align-items-center">
<Spinner style={{ height: "2.5rem", width: "2.5rem" }} color="primary" />
</div>
);
};
export default LoadingPage;
|