import { useTranslation } from "react-i18next"; import { useActiveHost } from "#/hooks/query/use-active-host"; import { I18nKey } from "#/i18n/declaration"; export function ServedAppLabel() { const { t } = useTranslation(); const { activeHost } = useActiveHost(); return (
{t(I18nKey.APP$TITLE)}
BETA
{activeHost &&
}
); }