1.1.0 ā€¢ Published 5 years ago

react-animated-dots v1.1.0

Weekly downloads
3,834
License
MIT
Repository
github
Last release
5 years ago

react-animated-dots

āš› Three dots loader for ReactJS Applications.

npm license

npm.io

Installation

npm install --save react-animated-dots

# OR

yarn add react-animated-dots

Usage

In your .js/jsx file:

import React from 'react';
import { Dot } from 'react-animated-dots';

const App = () => {
  return (
    <div>
      <h2>
      // Each <Dot> is a <span> in itself
      // You can include as much <Dot> as you want
        <Dot>.</Dot>
        <Dot>.</Dot>
        <Dot>.</Dot>
      </h2>
    </div>
  );
};

export default App;

Updating this package

If there's a change made in the src directory of this package, please consider running these commands in order, before publishing a major/minor/patch version over npm registery.

# !important
$ npm run dist

$ npm publish

Contributions

Contributions of any kind welcome in terms of PR(s) but please follow directory structure and code conventions for better collaboration.


License

MIT