// @flow import * as React from "react"; import { Helmet } from "react-helmet"; import PoliciesStore from "stores/PoliciesStore"; import AuthStore from "stores/AuthStore"; type Props = { title: string, favicon?: string, policies: PoliciesStore, auth: AuthStore, }; const { policies, auth } = this.props; const { team } = auth; const PageTitle = ({ title, favicon }: Props) => ( {`${title} - ${team.name}`} ); export default PageTitle;