import { Metadata } from "next";
import { getServerI18n, I18nProvider } from "@/i18n";
import Typography from "@mui/material/Typography";
import { Stack } from "@mui/material";
import { Suspense } from "react";
import QcItemAllTabs from "@/components/QcItemAll/QcItemAllTabs";
import Tab0ItemQcCategoryMapping from "@/components/QcItemAll/Tab0ItemQcCategoryMapping";
import Tab1QcCategoryQcItemMapping from "@/components/QcItemAll/Tab1QcCategoryQcItemMapping";
import Tab2QcCategoryManagement from "@/components/QcItemAll/Tab2QcCategoryManagement";
import Tab3QcItemManagement from "@/components/QcItemAll/Tab3QcItemManagement";
export const metadata: Metadata = {
title: "Qc Item All",
};
const qcItemAll: React.FC = async () => {
const { t } = await getServerI18n("qcItemAll");
return (
<>
{t("Qc Item All")}
Loading...}>
}
tab1Content={}
tab2Content={}
tab3Content={}
/>
>
);
};
export default qcItemAll;