Files
expert-front/src/core/components/TitlePage.jsx
2023-07-10 11:13:28 +03:30

16 lines
316 B
JavaScript

import { useTranslations } from "next-intl";
import Head from "next/head";
const TitlePage = ({ text }) => {
const t = useTranslations();
return (
<Head>
<title>
{text ? `${t("app_short_name")} | ${t(text)}` : t("app_short_name")}
</title>
</Head>
);
};
export default TitlePage;