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

21 lines
523 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';
2023-10-26 00:47:10 +00:00
import {LoadingDiv} from "./Loading.style";
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>
) ;
};
export default Loading;