/* eslint-disable i18next/no-literal-string */ import React from 'react'; import { NavLink } from 'react-router-dom'; import { sessions, metrics, assist, dashboard, withSiteId, recordings, } from 'App/routes'; import AnimatedSVG, { ICONS } from 'Shared/AnimatedSVG/AnimatedSVG'; import SiteDropdown from '../SiteDropdown'; import styles from '../header.module.css'; import { useTranslation } from 'react-i18next'; 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 { t } = useTranslation(); const { siteId } = props; return (