Last active
October 20, 2016 16:01
-
-
Save machnicki/fcdbf502149d5ee2bb3512c5efdf15f8 to your computer and use it in GitHub Desktop.
Event handlers in React - 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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