1const EscapeListen = React.createClass({
2 handleKeyDown: function(e) {
3 if (e.keyCode === 27) {
4 console.log('You pressed the escape key!')
5 }
6 },
7
8 render: function() {
9 return (
10 <input type='text'
11 onKeyDown={this.handleKeyDown} />
12 )
13 }
14})