React component for individual character input box
npm install react-individual-input-box> React component for individual character input box
 

``bash`
npm install --save react-individual-input-box
`tsx
import * as React from "react";
import InputBox from "react-individual-input-box";
class Example extends React.Component {
render() {
return (
value={this.value}
onChange={() => this.onChange()}
isPassword
onlyNumbers
/>
);
}
}
`
Common props you may want to specify include:
- size - number of input boxesvalue
- - control the current value isPassword
- - apply password dots to hide input dataonlyNumber
- - allow only numbersisConfirmInput
- - allow use the input box component two times in screent as a confirm data inputonChange` - subscribe to change events
-
MIT © lucasga