1.0.7 • Published 2 years ago
react-bounce-ball-loader v1.0.7
react-bounce-ball-loader
A small loader with bouncing balls built using syled components.
Import and Usage
import { BounceBallLoader } from 'react-bounce-ball-loader';
Example Usage:
const Component = () => {
const [isLoading, setIsLoading] = useState(true);
return (
<>
{isLoading && <BounceBallLoader />}
</>
);
}