import { __ } from '@wordpress/i18n'; import { NavLink } from 'react-router-dom'; import navRoutes from '../../data/navRoutes'; import cn from '../../utils/cn'; const SideNav = () => { type RouteType = keyof typeof navRoutes; const routes = Object.keys(navRoutes) as RouteType[]; return (