A circular rotating loading spinner.
npm install @hods/loading-spinnerHODS - Loading-Spinner
======================
A circular rotating loading spinner.
Using this package
------------------
First install the package into your project:
``shell`
npm install -S @hods/loading-spinner
Then use it in your code as follows:
`js
import React, { createElement as h } from 'react';
import LoadingSpinner from '@hods/loading-spinner';
export const MyComponent = props => (
);
export default MyComponent;
`
Working on this package
-----------------------
Before working on this package you must install its dependencies using
the following command:
`shell`
pnpm install
Run the unit tests.
`shell`
npm test
Build the package by compiling the TypeScript source code.
`shell`
npm run build
Remove any previously built files.
`shell``
npm run clean