import React from "react"; export interface KeyboardShortcutScopeProps { id: string; children: React.ReactNode; } export const KeyboardShortcutScope = ({ id, children }: KeyboardShortcutScopeProps) => (
{children}
);