import React from 'react'; import NodeGroupItem from '../interface/NodeGroupItem'; interface Props { nodes: NodeGroupItem[]; itemWidth: number; itemHeight: number; selectedKey?: string; } export default function VerticalBarsColumn({ nodes, itemWidth, itemHeight, selectedKey, }: Props) { return (