import { PropsWithChildren, ReactNode } from 'react'; import styles from './SidebarSection.module.css'; interface Props { title: ReactNode; label?: string; } export function SidebarSection({ title, label, children, }: PropsWithChildren) { const labelText = typeof title === 'string' ? title : label; return ( <>
  • {title}
  • ); }