export function SideNote({ children, title }: { children: React.ReactNode; title?: string }) { return ( {title ? {title} : null} {children} ); }