Skip to content

Instantly share code, notes, and snippets.

View beausmith's full-sized avatar
🍞
Probably baking something.

Beau Smith beausmith

🍞
Probably baking something.
View GitHub Profile
@beausmith
beausmith / inputHandler.jsx
Created May 2, 2018 23:17
One React method to control all html form elements
updateInputValue = ({ currentTarget: { name, value, checked, type } }) => {
this.setState({
[name]: type === 'checkbox' ? checked : value || this.initialState[name]
})
}