2023-10-25 02:39:07 +00:00
|
|
|
import React from 'react';
|
|
|
|
|
import {Blocks} from "react-loader-spinner";
|
|
|
|
|
import Row from 'react-bootstrap/Row';
|
|
|
|
|
import Col from 'react-bootstrap/Col';
|
2023-10-26 00:47:10 +00:00
|
|
|
import {LoadingDiv} from "./Loading.style";
|
2023-10-25 02:39:07 +00:00
|
|
|
|
|
|
|
|
function Loading () {
|
|
|
|
|
return (
|
2023-10-26 00:47:10 +00:00
|
|
|
<LoadingDiv>
|
|
|
|
|
<Blocks
|
|
|
|
|
height="150"
|
|
|
|
|
width="150"
|
|
|
|
|
ariaLabel="blocks-loading"
|
|
|
|
|
wrapperStyle={{}}
|
|
|
|
|
wrapperClass="blocks-wrapper"
|
|
|
|
|
/>
|
|
|
|
|
</LoadingDiv>
|
2023-10-25 02:39:07 +00:00
|
|
|
) ;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default Loading;
|