FPSMS-frontend
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

page.tsx 550 B

il y a 7 mois
il y a 6 mois
il y a 7 mois
il y a 6 mois
il y a 7 mois
1234567891011121314151617181920212223
  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={["inventory", "common"]}>
  13. <Suspense fallback={<SearchPage.Loading />}>
  14. <SearchPage />
  15. </Suspense>
  16. </I18nProvider>
  17. </>
  18. );
  19. };
  20. export default SearchView;