/* eslint-disable no-undef */ const Icon = { Home: (p) => ( ), Trend: (p) => ( ), Alert: (p) => ( ), Map: (p) => ( ), Calculator: (p) => ( ), Bars: (p) => ( ), HouseMark: () => ( ), }; const NAV = [ { id: 'valuation', label: 'Valuation', icon: Icon.Home }, { id: 'market', label: 'Market Overview', icon: Icon.Bars }, { id: 'roi', label: 'ROI Calculator', icon: Icon.Calculator }, { id: 'sentiment', label: 'Sentiment Index', icon: Icon.Trend }, ]; const Sidebar = ({ active, onNav }) => ( ); const Header = ({ title }) => (
{title} Q1 2025
); Object.assign(window, { Icon, Sidebar, Header });