import React from "react"; import { ContentTree } from "@financial-times/content-tree"; import { ContentLayout } from "../../ContentLayout"; import { ContentProps } from '../../types' interface InfoBoxProps extends ContentProps> {} const InfoBox: React.FC> = ({ content: { layoutWidth }, children }) => { return (
{children}
); } export default InfoBox;