FPSMS-frontend
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

page.tsx 638 B

6 달 전
1 개월 전
6 달 전
12345678910111213141516171819
  1. import { Suspense } from "react";
  2. import StockTakeManagementWrapper from "@/components/StockTakeManagement";
  3. import { I18nProvider, getServerI18n } from "@/i18n";
  4. import { Typography } from "@mui/material";
  5. import { isArray } from "lodash";
  6. import { Metadata } from "next";
  7. import { notFound } from "next/navigation";
  8. export default async function InventoryManagementPage() {
  9. const { t } = await getServerI18n("inventory");
  10. return (
  11. <I18nProvider namespaces={["inventory","common"]}>
  12. <Suspense fallback={<StockTakeManagementWrapper.Loading />}>
  13. <StockTakeManagementWrapper />
  14. </Suspense>
  15. </I18nProvider>
  16. );
  17. }