import react, {ReactNode} from 'react' type TimelineCardSummaryProps = { children: ReactNode, tags?: ReactNode[] } function TimelineCardSummary({ children, tags } : TimelineCardSummaryProps) { return ( <> {children} { tags &&