// @flow import { observer } from "mobx-react"; import * as React from "react"; import { Helmet } from "react-helmet"; import { cdnPath } from "../../shared/utils/urls"; import useStores from "hooks/useStores"; 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`} {favicon ? ( ) : ( )} ); }; export default observer(PageTitle);