Introduce prettier

This commit is contained in:
Takeshi Kimata
2024-05-19 21:06:49 +09:00
parent 75eeebefda
commit c5ba3b9a00
52 changed files with 884 additions and 1509 deletions

View File

@@ -1,9 +1,9 @@
import { useTranslations } from "next-intl";
import AccountPage from "./AccountPage";
import { useTranslations } from 'next-intl';
import AccountPage from './AccountPage';
export default function Page(params: { locale: string }) {
const t = useTranslations("Auth");
const t = useTranslations('Auth');
const messages = {
yourProjects: t("your_projects"),
yourProjects: t('your_projects'),
};
return <AccountPage messages={messages} locale={params.locale} />;