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