Last active
October 31, 2020 17:59
-
-
Save heymartinadams/66a10433768f4dd648b1f845775b9463 to your computer and use it in GitHub Desktop.
Medium essay
This file contains 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
<Input | |
autocomplete='off' | |
disabled={false} | |
autofocus={true} | |
inputRef={null} | |
name='myInput' | |
onBlur={x => console.log(x)} | |
onChange={x => console.log(x)} | |
onKeyDown={x => console.log(x)} | |
placeholder='Please enter a value' | |
style={{ width: '100%' }} | |
tabindex='-1' | |
type='text' | |
value={value} | |
/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment