Files
pp-tcms/frontend/src/app/[locale]/projects/[projectId]/home/page.tsx
2024-05-06 17:51:45 +09:00

61 lines
1.4 KiB
TypeScript

import { Home } from "./home";
import { useTranslations } from "next-intl";
export type HomeMessages = {
folders: string;
testCases: string;
testRuns: string;
testTypes: string;
other: string;
security: string;
performance: string;
accessibility: string;
functional: string;
acceptance: string;
usability: string;
smokeSanity: string;
compatibility: string;
destructive: string;
regression: string;
automated: string;
manual: string;
priority: string;
critical: string;
high: string;
medium: string;
low: string;
};
export default function Page({ params }: { params: { projectId: string } }) {
const t = useTranslations("Home");
const messages = {
folders: t("Folders"),
testCases: t("test_cases"),
testRuns: t("test_runs"),
testTypes: t("test_types"),
other: t("other"),
security: t("security"),
performance: t("performance"),
accessibility: t("accessibility"),
functional: t("functional"),
acceptance: t("acceptance"),
usability: t("usability"),
smokeSanity: t("smoke_sanity"),
compatibility: t("compatibility"),
destructive: t("destructive"),
regression: t("regression"),
automated: t("automated"),
manual: t("manual"),
priority: t("priority"),
critical: t("critical"),
high: t("high"),
medium: t("medium"),
low: t("low"),
};
return (
<>
<Home projectId={params.projectId} messages={messages} />
</>
);
}