import React from 'react'; import { NavLink } from 'react-router-dom'; import { sessions, metrics, assist, dashboard, withSiteId, recordings, } from 'App/routes'; import SiteDropdown from '../SiteDropdown'; import AnimatedSVG, { ICONS } from 'Shared/AnimatedSVG/AnimatedSVG'; import styles from '../header.module.css'; const DASHBOARD_PATH = dashboard(); const METRICS_PATH = metrics(); const SESSIONS_PATH = sessions(); const ASSIST_PATH = assist(); const RECORDINGS_PATH = recordings(); interface Props { siteId: any; } function DefaultMenuView(props: Props) { const { siteId } = props; return (