import { TypeEnum } from "@/app/utils/typeEnum";
import MaterialSearch from "@/components/ItemsSearch";
import { getServerI18n } from "@/i18n";
import Add from "@mui/icons-material/Add";
import Button from "@mui/material/Button";
import Stack from "@mui/material/Stack";
import Typography from "@mui/material/Typography";
import { Metadata } from "next";
import Link from "next/link";
import { Suspense } from "react";
export const metadata: Metadata = {
title: "ByProduct",
};
const materialSetting: React.FC = async () => {
const byProduct = TypeEnum.BYPRODUCT
const { t } = await getServerI18n(byProduct);
// preloadClaims();
return (
<>
{t("ByProduct")}
}
LinkComponent={Link}
href="byProduct/create"
>
{t("Create by-Product")}
}>
>
);
};
export default materialSetting;