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 500 B

il y a 1 mois
12345678910111213141516
  1. import { Suspense } from "react";
  2. import TruckLaneDetail from "@/components/Shop/TruckLaneDetail";
  3. import { I18nProvider, getServerI18n } from "@/i18n";
  4. import GeneralLoading from "@/components/General/GeneralLoading";
  5. export default async function TruckLaneDetailPage() {
  6. await getServerI18n("shop");
  7. return (
  8. <I18nProvider namespaces={["shop","navigation","common"]}>
  9. <Suspense fallback={<GeneralLoading />}>
  10. <TruckLaneDetail />
  11. </Suspense>
  12. </I18nProvider>
  13. );
  14. }