FPSMS-frontend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
565 B

  1. import SearchPage from "@/components/StockIssue/index";
  2. import { getServerI18n } from "@/i18n";
  3. import { I18nProvider } from "@/i18n";
  4. import { Metadata } from "next";
  5. import { Suspense } from "react";
  6. export const metadata: Metadata = {
  7. title: "Stock Issue",
  8. };
  9. const SearchView: React.FC = async () => {
  10. return (
  11. <>
  12. <I18nProvider namespaces={["stockIssue", "navigation", "common"]}>
  13. <Suspense fallback={<SearchPage.Loading />}>
  14. <SearchPage />
  15. </Suspense>
  16. </I18nProvider>
  17. </>
  18. );
  19. };
  20. export default SearchView;