t-convex-nextjs-saas/src/app/page.tsx

7 lines
154 B
TypeScript
Raw Normal View History

import { useTranslations } from "next-intl";
export default function Home() {
const t = useTranslations("HomePage");
return <h1>{t("title")}</h1>;
}