import type { PropsWithChildren, ReactNode } from "react"; export function SectionCard({ title, action, children, }: PropsWithChildren<{ title?: string; action?: ReactNode }>) { return (
{title || action ? (
{title ?

{title}

: } {action}
) : null} {children}
); }