import React, {PropTypes, PureComponent} from 'react'; import Hotkey from '../../hotkey'; class DropdownHint extends PureComponent { render () { const {char, shift, alt} = this.props; return ( ); } } DropdownHint.propTypes = { char: PropTypes.string.isRequired, // Optional alt: PropTypes.bool, shift: PropTypes.bool }; export default DropdownHint;