import type { ActionGroupView } from '../state/viewModel'; import { ActionGroup } from './ActionGroup'; interface ActionColumnProps { label: string; groups: ActionGroupView[]; actionKind: string; } export function ActionColumn({ label, groups, actionKind }: ActionColumnProps) { return (

{label}

{groups.map((group) => ( ))}
); }