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

33 lines
837 B

  1. import M18ImportTesting from "@/components/M18ImportTesting";
  2. import { getServerI18n } from "@/i18n";
  3. import { Stack } from "@mui/material";
  4. import { Metadata } from "next";
  5. import React, { Suspense } from "react";
  6. import { I18nProvider } from "@/i18n";
  7. export const metadata: Metadata = {
  8. title: "Import Testing",
  9. };
  10. const M18ImportTestingPage: React.FC = async () => {
  11. const { t } = await getServerI18n("m18ImportTesting");
  12. return (
  13. <>
  14. <Stack
  15. direction="row"
  16. justifyContent="space-between"
  17. flexWrap="wrap"
  18. rowGap={2}
  19. ></Stack>
  20. <Suspense fallback={<M18ImportTesting.Loading />}>
  21. <I18nProvider namespaces={["common", "m18ImportTesting"]}>
  22. <M18ImportTesting />
  23. </I18nProvider>
  24. </Suspense>
  25. </>
  26. );
  27. };
  28. export default M18ImportTestingPage;