import React from "react"; import { SidebarTitle } from "./style"; export interface SidebarSectionProps { readonly title: string; } const SidebarSection = ({ title, children }: React.PropsWithChildren) => { return (
{title} {children}
) } export default SidebarSection;