'use client'; export default function SidebarSection({title, children}) { return (

{title}

{children}
); }