import React from 'react' import { ContentLayout } from '../../ContentLayout' import { ContentTree } from '@financial-times/content-tree' import { ContentProps } from '../../types' interface TimelineProps extends ContentProps> {} /* * @description Timeline component is used to render a simple timeline of events. * @param children - The content to be displayed in the layout. */ const Timeline: React.FC> = ({ content: { title }, children, }) => { return (
{title && (

{title}

)} {children}
) } export default Timeline