blob: 81bc74cf7864cfe64700463c68f69a1f8d537cd3 (
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;
|