Skip to content

Commit

Permalink
correction d'un problème
Browse files Browse the repository at this point in the history
  • Loading branch information
NingetsuSama committed May 30, 2024
1 parent 1a34650 commit dc70b60
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@

import { useEffect, useState } from "react";
import { updateCountryInfo } from "../utils.js";
import dynamic from 'next/dynamic';

import Body from "../components/Body.js";
import Switch from "../components/Switch.js";
import Carousel from "../components/Carousel.js";
import Map from "../components/Map.js";
const Map = dynamic(() => import('../components/Map.js'), {
ssr: false,
});
import Modal from "../components/Modal.js";


Expand Down

0 comments on commit dc70b60

Please sign in to comment.