React HTML Select component for US State Selection
npm install react-select-us-statesReact Select US States
======================
React HTML Select component for US State Selection.
The package can be installed via NPM:
```
npm install react-select-us-states --save
The list of US States were taken from here
Sample Usage:
`javascript
import React, {Component} from 'react';
import './App.css';
import SelectUSState from 'react-select-us-states';
class App extends Component {
constructor(props) {
super(props);
this.setNewValue = this.setNewValue.bind(this);
}
setNewValue(newValue) {
console.log('this is the State code:' + newValue);
}
render() {
return (
Select a state:
export default App;
``