22 lines
570 B
React
22 lines
570 B
React
|
|
import React from 'react';
|
||
|
|
import {Blocks} from "react-loader-spinner";
|
||
|
|
import Row from 'react-bootstrap/Row';
|
||
|
|
import Col from 'react-bootstrap/Col';
|
||
|
|
|
||
|
|
function Loading () {
|
||
|
|
return (
|
||
|
|
<Row className="justify-content-center">
|
||
|
|
<Col xs="1">
|
||
|
|
<Blocks
|
||
|
|
height="80"
|
||
|
|
width="80"
|
||
|
|
ariaLabel="blocks-loading"
|
||
|
|
wrapperStyle={{}}
|
||
|
|
wrapperClass="blocks-wrapper"
|
||
|
|
/>
|
||
|
|
</Col>
|
||
|
|
</Row>
|
||
|
|
) ;
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Loading;
|