JSPM

react-bounce-ball-loader

1.0.4-test
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q46913F
  • License MIT

A small bouncing balls loader built using styled components

Package Exports

  • react-bounce-ball-loader
  • react-bounce-ball-loader/dist/cjs/index.js
  • react-bounce-ball-loader/dist/esm/index.js

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