react-phone-input
A simple react component to format a phone number as the user types.Installation:
```shell-script npm install react-phone-input --save
## Usage:
```jsx
React.render(
<ReactPhoneInput defaultCountry={'us'} onChange{handleOnChange)/>,
document.getElementById('content'));
Your handler for the `
onChange
` event should expect a string as
parameter, where the value is that of the entered phone number. For example:function handeOnChange(value) {
this.setState({
phone: value
});
}