// @flow import * as React from 'react'; import { Helmet } from 'react-helmet'; type Props = { title: string, favicon?: string, }; const PageTitle = ({ title, favicon }: Props) => ( {`${title} - Outline`} ); export default PageTitle;