import React from 'react'; interface ContainerHeaderProps { cat?: string; backLink: string; title: string; } const ContainerHeader: React.FunctionComponent = (props) => (

{props.title}

); export default ContainerHeader;