import * as React from 'react'; import { Helmet } from 'react-helmet'; export interface MetaTagsProps { title: string; description: string; imgSrc?: string; } export const MetaTags: React.StatelessComponent = ({ title, description, imgSrc }) => ( {title} ); MetaTags.defaultProps = { imgSrc: '/images/og_image.png', };