Last active
August 14, 2022 13:13
-
-
Save phsantiago/dfebde4554001edd489509558377b6f9 to your computer and use it in GitHub Desktop.
command or control enter for react, working on mac and windows
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
const controlEnter = (e: React.KeyboardEvent) => | |
(e.metaKey || e.ctrlKey) && e.which === 13; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment