Skip to content

Commit

Permalink
Merge pull request #7 from italoh623/develop
Browse files Browse the repository at this point in the history
Corrigindo erro de importação do componente do Mapa
  • Loading branch information
italoh623 authored Mar 4, 2024
2 parents 0385275 + 1b6f10b commit ab0377f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
import React from "react";

import Map from "@/components/Map";
import dynamic from "next/dynamic";

const Map = dynamic(() => import("@/components/Map"), {
loading: () => <div>"Loading..."</div>,
ssr: false,
})
import Menu from "@/components/Menu";
import SessionImportance from "@/components/SessionImportance";
import Carousel from "@/components/Carousel";
Expand All @@ -10,6 +15,7 @@ import styles from "./page.module.css";
import SessionAppreciation from "@/components/SessionAppreciation";



export default function Home() {
return (
<div>
Expand Down

0 comments on commit ab0377f

Please sign in to comment.