import { memo } from 'react' export const SidebarItem: React.FC = memo((props) => { return ( <>
  • {props.children}
  • ) })