react-pin-input
react-pin-input copied to clipboard
Detect enter keypress
Detect enter key press in fields.
@manoharc1999 Are you looking for something like
<PinInput
onEnterKeyPress={() => { ... }}
/>
Or more generic
<PinInput
onKeyPress={() => { ... }}
/>
@manoharc1999 Are you looking for something like
<PinInput onEnterKeyPress={() => { ... }} />Or more generic
<PinInput onKeyPress={() => { ... }} />
Generic one will be more useful🙂