import * as React from 'react'; import { Helmet } from 'react-helmet'; import { withContext, Props } from './withContext'; interface MetaTagsProps extends Props { imgSrc?: string; } function MetaTags(props: MetaTagsProps) { const { title, imgSrc = '/images/og_image.png' } = props; const description = props.tagline; return ( {props.title} ); } export default withContext(MetaTags);