import { interactionMap, sortInteractionMapByCategory, } from 'lib/settings/initialKeybindings' interface KeybindingSectionsListProps { scrollRef: React.RefObject } export function KeybindingsSectionsList({ scrollRef, }: KeybindingSectionsListProps) { return (
{Object.entries(interactionMap) .sort(sortInteractionMapByCategory) .map(([category]) => ( ))}
) }