Skip to content

Instantly share code, notes, and snippets.

@machnicki
Last active October 20, 2016 16:01
Show Gist options
  • Save machnicki/fcdbf502149d5ee2bb3512c5efdf15f8 to your computer and use it in GitHub Desktop.
Save machnicki/fcdbf502149d5ee2bb3512c5efdf15f8 to your computer and use it in GitHub Desktop.
Event handlers in React - 2
import React, { Component } from 'react'
import { MyInput, MyAnotherInput } from 'myInputs'
class MyComponent extends Component {
handleChange = (e) => e.preventDefault()
handleClick = (e) => e.preventDefault()
handleKeyPress = (e) => {
e.preventDefault()
if (e.nativeEvent.keyCode === 13) {
console.log('This is enter!')
}
}
render() {
return (
<div>
<MyInput
onChange={ this.handleChange }
onClick={ this.handleClick }
onKeyPress={ this.handleKeyPress }
/>
<MyAnotherInput
onChange={ this.handleChange }
onClick={ this.handleClick }
onKeyPress={ this.handleKeyPress }
/>
</div>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment