npm install react-number-fieldreact-number-field
==================
``sh`
$ npm i --save react-number-field
`jsx
import NumberField from 'react-number-field'
let value = 3
`
* allowFloat: Boolean - defaults to true. Specify false to only allow integersallowNegative: Boolean
* - defaults to trueminValue
* maxValue
* step: Number
* - defaults to 1shiftStep: Number
* - defaults to 10stepDelay: Number
* - defaults to 40 msstepOnWheel: Boolean
* - defaults to truerequireFocusOnStep: Boolean
* - defaults to truenumbersOnly: Boolean
* - defaults to truefactory: Function
* - another React factory to render a different component. By default, a react-field is rendered.onChange(value, event)
* - By default, the onChange handler will be called with the value as the first arg. If you use a factory function that calls onChange with other args, those will be passed to the onChange.validate(newValue, char, props)
*
`sh``
$ npm run dev
#### MIT