import { SearchParams } from "@/app/utils/fetchUtil"; import { TypeEnum } from "@/app/utils/typeEnum"; import CreateEquipmentType from "@/components/CreateEquipment"; import { I18nProvider, getServerI18n } from "@/i18n"; import { Typography } from "@mui/material"; import isString from "lodash/isString"; import { notFound } from "next/navigation"; type Props = {} & SearchParams; const productSetting: React.FC = async ({ searchParams }) => { const type = "common"; const { t } = await getServerI18n(type); const id = isString(searchParams["id"]) ? parseInt(searchParams["id"]) : undefined; if (!id) { notFound(); } return ( <> {/* {t("Create Material")} */} ); }; export default productSetting;