Skip to content

Instantly share code, notes, and snippets.

View i-am-henri's full-sized avatar
🎮
Making the Internet better ⚡️

henri i-am-henri

🎮
Making the Internet better ⚡️
View GitHub Profile
@i-am-henri
i-am-henri / useKeypress.ts
Created June 18, 2024 18:52 — forked from KristofferEriksson/useKeypress.ts
A React custom hook for handling keyboard events.
import { useEffect } from "react";
const Keys = {
Backspace: "Backspace",
Tab: "Tab",
Enter: "Enter",
Shift: "Shift",
Control: "Control",
Alt: "Alt",
Pause: "Pause",