import React from "react"; interface Props { title?: string; children?: React.ReactNode; } export const SidebarMenu = ({ title, children }: Props) => { return (
{title} {children}
); };