import { Link } from 'react-router' import { MENU } from './menu' export const Sidebar = () => { return (
{MENU.map(({ group, items }) => ( <>
{group}
{items.map(({ title, url, icon: Icon }) => ( {title} ))} ))}
) }