import { Metadata } from "next";
import { getServerI18n, I18nProvider } from "@/i18n";
import Typography from "@mui/material/Typography";
import { Button, Link, Stack } from "@mui/material";
import { Add } from "@mui/icons-material";
import { Suspense } from "react";
import { preloadQcItem } from "@/app/api/settings/qcItem";
import QcItemSearch from "@/components/QcItemSearch";
export const metadata: Metadata = {
title: "Qc Item",
};
const qcItem: React.FC = async () => {
const { t } = await getServerI18n("qcItem");
preloadQcItem();
return (
<>
{t("Qc Item")}
}
LinkComponent={Link}
href="qcItem/create"
>
{t("Create Qc Item")}
}>
>
);
};
export default qcItem;