Created
January 11, 2023 14:00
-
-
Save jhaashutosh/e535dfb36a907ed5a8092e09564d7c97 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import { Spinner } from "react-bootstrap"; | |
const Loader = () => { | |
return ( | |
<Spinner | |
animation='border' | |
role='status' | |
style={{ | |
width: "50px", | |
height: "50px", | |
margin: "30px auto", | |
display: "block", | |
}} | |
></Spinner> | |
); | |
}; | |
export default Loader; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment