Created
April 18, 2018 14:56
-
-
Save lmiller1990/e2a28308f6790a63e6b54f7fd1690431 to your computer and use it in GitHub Desktop.
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
| handle(e) { | |
| const evt = e.nativeEvent.inputEvent | |
| if (evt.type === 'KeyboardInputEvent') { | |
| this.setState({ count: this.state.count + 1 }) | |
| console.log(`Key pressed. \nkeyCode: ${evt.keyCode}.\nkey: ${evt.key}\neventType: ${evt.eventType}`) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment