/* 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 }) => (
);
Object.assign(window, { Icon, Sidebar, Header });