react-keycode-input is a cool react component for inputing many kinds of codes
npm install --save react-keycode-input
import KeycodeInput from 'react-keycode-input'
class Demo extends React.Component {
render () {
return <KeycodeInput />
}
}You can also use the modal version of this component by
import KeycodeInputModal from 'react-keycode-input/modal'It utilizes ant design Modal component, so be sure you have antd installed
An example is provided in example
