initial commit
This commit is contained in:
18
src/pages/home/LoadingPage.tsx
Normal file
18
src/pages/home/LoadingPage.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import React from "react";
|
||||
import { Triangle } from "react-loader-spinner";
|
||||
|
||||
const LoadingPage: React.FC = () => (
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="eight columns">
|
||||
<div
|
||||
style={{ display: "flex", justifyContent: "center", marginTop: 24 }}
|
||||
>
|
||||
<Triangle height="100" width="100" color="grey" ariaLabel="loading" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
export default LoadingPage;
|
||||
Reference in New Issue
Block a user