kcscDev/egovframe-template-simple-r.../src/components/Loading.jsx

22 lines
570 B
React
Raw Normal View History

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;