A small bouncing balls loader built using styled components
npm install react-bounce-ball-loaderA small loader with bouncing balls built using syled components.
import { BounceBallLoader } from 'react-bounce-ball-loader';
`
Example Usage:
`
const Component = () => {
const [isLoading, setIsLoading] = useState(true);
return (
<>
{isLoading && }
>
);
}
``