@react-ck/spinner
v3.0.25
Published
> :warning: **WARNING**: This component library is being updated frequently and it's currently unstable due to being in it's early stages, we advice you to use only in production environments only after version **2.0.0**.
Downloads
351
Readme
React CK | Spinner Component
:warning: WARNING: This component library is being updated frequently and it's currently unstable due to being in it's early stages, we advice you to use only in production environments only after version 2.0.0.
A versatile and customizable spinner component for React applications, providing developers with a dynamic solution to enhance user engagement and indicate loading states. This component serves as a visual representation of activity within the application, keeping users informed and engaged while waiting for data to load.
Installation
To integrate the this component into your React apps, you can install it using npm or yarn: npm i --save @react-ck/spinner
or yarn add @react-ck/spinner
.
You will also need to set up the manager, install it using npm or yarn: npm i --save @react-ck/manager
or yarn add @react-ck/manager
.
Wrap your app root with the theme provider and use this component:
import { Manager } from "@react-ck/manager";
import { Spinner } from "@react-ck/spinner";
const myApp = () => (
<Manager>
<Spinner ... />
</Manager>
);
Check the documentation website - react-ck.js.org.