import React, { PropsWithChildren } from 'react' import { ContentTree } from '@financial-times/content-tree' import { ContentProps } from '../../types' interface CardProps extends ContentProps> {} const Card: React.FC> = ({ content: { title }, children, } ) => { return (
{title &&

{title}

}
{children}
) } export default Card