JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 15
  • Score
    100M100P100Q47010F
  • License MIT

A small bouncing balls loader built using styled components

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-bounce-ball-loader) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    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 />}
            </>
        );
    }