()
| 439 | } |
| 440 | |
| 441 | function 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 | |
| 464 | const rootElement = document.getElementById('root')! |
| 465 | render(() => <App />, rootElement) |
nothing calls this directly
no outgoing calls
no test coverage detected