export type Tab = 'results' | 'grid' | 'strategy' | 'positions' | 'datasets' const TABS: { id: Tab; label: string }[] = [ { id: 'results', label: 'Results' }, { id: 'grid', label: 'Grid' }, { id: 'strategy', label: 'Strategy' }, { id: 'positions', label: 'Positions' }, { id: 'datasets', label: 'Datasets' }, ] interface Props { active: Tab onChange: (tab: Tab) => void } export function TabBar({ active, onChange }: Props) { return (