Skip to content

Instantly share code, notes, and snippets.

@adrianvlupu
Forked from machnicki/handler-react-2.js
Created October 20, 2016 16:01
Show Gist options
  • Save adrianvlupu/d4e31c64a17aa7a37a6b21e1f49673e9 to your computer and use it in GitHub Desktop.
Save adrianvlupu/d4e31c64a17aa7a37a6b21e1f49673e9 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