import classNames from 'classnames'; import { Menu, Item } from 'react-basics'; import { useRouter } from 'next/router'; import Link from 'next/link'; import styles from './SideNav.module.css'; export function SideNav({ selectedKey, items, shallow, onSelect = () => {} }) { const { asPath } = useRouter(); return ( {({ key, label, url }) => ( {label} )} ); } export default SideNav;