© 2026 Hedgehog Software, LLC
import { useKeyDownEvent } from "@solid-primitives/keyboard";
const [UserSettingsStore, setUserSettingsStore] = createStore({ showChat: true, ...})
import { useKeyDownEvent } from "@solid-primitives/keyboard"; const event = useKeyDownEvent(); createEffect(() => { const e = event(); console.log(e); // => KeyboardEvent | null if (e) { setUserSettingsStore("showChat", !UserSettingsStore.showChat) } });