React component for fancy transition for numbers.
npm install react-number-easingReact component for fancy number transitions.

``js`
npm install react-number-easing --save
`jsx
import NumberEasing from 'react-number-easing';
speed={300}
decimals={0}
ease='quintInOut' />
`
* value: The value that you want to display at the end of the animation. This is the target value.[speed]
* : How fast do you want to finish the animation? Defaults to 500ms.[ease]
* : The easing equation for the animation. Defaults to quintInOut. You can choose from mattdesl/eases.[decimals]
* : Number of decimal numbers to show.[customFunctionRender]
* : Function that replaces the default Number(value).toString(decimals) render function. It takes one argument currentRenderValue which is a Float with the current eased value to render and should return a string`.