/* eslint-disable @next/next/no-img-element */ import React from 'react'; import Link from 'next/link'; import { useRouter } from 'next/router'; import Icon from './Icon'; type SidebarProps = { domains: DomainType[], showAddModal: Function } const Sidebar = ({ domains, showAddModal } : SidebarProps) => { const router = useRouter(); return (

SerpBear

); }; export default Sidebar;