1.0.4 • Published 6 years ago

react-countup-light v1.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

react-countup-light

This is a count up component in much light version.

demo

Installation

yarn add react-countup-light

or

npm install react-countup-light

How to use it

import React from 'react';
import { render } from 'react-dom';
import CountUp from 'react-countup-light';

render(
  <CountUp startNum={0} endNum={30} duration={2000} />,
  document.getElementById('root')
);

Props

startNum: number

Start value

endNum: number

End value

duration: number

Duration in milliseconds

className: string

You can define your own class here

License

MIT