import React from 'react'; import type { GraphMeta, FilterType } from '../types'; interface SidebarProps { meta: GraphMeta; activeFilter: FilterType; onFilterChange: (filter: FilterType) => void; } export const Sidebar: React.FC = ({ meta, activeFilter, onFilterChange }) => { return ( ); };