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