import Link from 'next/link' import s from './MenuSidebarView.module.css' import { FC } from 'react' import { useUI } from '@components/ui/context' import SidebarLayout from '@components/common/SidebarLayout' import { Link as LinkProps} from '.' interface MenuProps { links?: LinkProps[] } const MenuSidebarView: FC = (props) => { const { closeSidebar } = useUI() const handleClose = () => closeSidebar() return (
) } export default MenuSidebarView