import React from 'react'; import { Link, useLocation } from 'react-router-dom'; import clsx from 'clsx'; export const NavItem: React.FC<{ to: string; label: string; }> = React.memo((props) => { const location = useLocation(); const isCurrent = location.pathname.startsWith(props.to); return (