Last active
February 22, 2021 06:26
-
-
Save cv2k10/9661f0387d820aa29de4433e0a8867eb to your computer and use it in GitHub Desktop.
Loader component (Reactstrap)
This file contains hidden or 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
| function Loader() { | |
| return ( | |
| <div className="d-flex justify-content-center align-items-center h-100 "> | |
| <Spinner color="dark" /> | |
| </div> | |
| ) | |
| } | |
| export default Loader; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment