Skip to content

Instantly share code, notes, and snippets.

@jhaashutosh
Created January 11, 2023 14:00
Show Gist options
  • Save jhaashutosh/e535dfb36a907ed5a8092e09564d7c97 to your computer and use it in GitHub Desktop.
Save jhaashutosh/e535dfb36a907ed5a8092e09564d7c97 to your computer and use it in GitHub Desktop.
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