aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/common/LoadingPage.tsx
blob: 8c1e681a348b64909e310f3eaed274938e2e65b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from "react";

import Spinner from "./Spinner";

const LoadingPage: React.FC = () => {
  return (
    <div className="position-fixed w-100 h-100 d-flex justify-content-center align-items-center">
      <Spinner />
    </div>
  );
};

export default LoadingPage;