React component as a numeric input field
npm install tl-react-numeric-input
> React component as a numeric input field
 !GitHub issues    !David !David !David

Use the package manager to install tl-react-numeric-input:
``shell`
yarn add tl-react-numeric-input
# or
npm i tl-react-numeric-input
Download and unzip archive or clone with command:
`shell`
git clone https://github.com/MitrofD/tl-react-numeric-input.git
Then install dependencies:
`shell`
yarn install
# or
npm install
Last step run start command:
`shell`
yarn run start
# or
npm run start
`js
import TLNumericInput from 'tl-react-numeric-input';
`
Your handler for the onSet event should expect a TLNumericInput. For example:
`js``
function handleOnSet(numericInput) {
this.setState({
numeric: numericInput.value
});
}
All attributes for input with number type + optional onSet handler