MCPcopy Create free account
hub / github.com/TanStack/hotkeys / App

Function App

examples/solid/createHotkeys/src/index.tsx:441–462  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

439}
440
441function App() {
442 return (
443 <>
444 <HotkeysProvider>
445 <div class="app">
446 <header>
447 <h1>createHotkeys</h1>
448 <p>
449 Register multiple hotkeys in a single primitive call. Supports
450 dynamic arrays for variable-length shortcut lists.
451 </p>
452 </header>
453 <BasicMultiHotkeys />
454 <CommonOptionsDemo />
455 <DynamicHotkeysDemo />
456 <RegistrationsViewer />
457 </div>
458 </HotkeysProvider>
459 <TanStackDevtools plugins={plugins} />
460 </>
461 )
462}
463
464const rootElement = document.getElementById('root')!
465render(() => <App />, rootElement)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected