aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/common/LoadingPage.tsx
blob: 35ee1aa8386c3c6cf5b372b6f46f9f59d9215d23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import * as 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;