// @flow import { observer } from "mobx-react"; import * as React from "react"; import { Helmet } from "react-helmet"; import useStores from "hooks/useStores"; import { cdnPath } from "utils/urls"; type Props = {| title: string, favicon?: string, |}; const PageTitle = ({ title, favicon }: Props) => { const { auth } = useStores(); const { team } = auth; return ( {team && team.name ? `${title} - ${team.name}` : `${title} - Outline`} ); }; export default observer(PageTitle);