import Image from "next/image"; import type { NavItem } from "@/lib/overview"; import { deltaClass, fmtCurrency, fmtPct } from "@/lib/format"; import { watchlistSubtitle } from "@/lib/overview"; import type { WatchlistResponse } from "@/types/api"; type Props = { navItems: NavItem[]; selectedKey: string; currentTicker: string; watchlist: WatchlistResponse; watchlistError: string | null; onSelectTicker: (symbol: string) => void; onRemoveTicker: (symbol: string) => void; onSelectTab: (key: string) => void; }; export function Sidebar({ navItems, selectedKey, currentTicker, watchlist, watchlistError, onSelectTicker, onRemoveTicker, onSelectTab }: Props) { return ( ); }