-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: event detail and rating component
- Loading branch information
alexandre-kakal-akarah
committed
Aug 28, 2024
1 parent
4a99336
commit cfb6ce5
Showing
6 changed files
with
208 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
"use client"; | ||
|
||
import dynamic from "next/dynamic"; | ||
import React from "react"; | ||
|
||
const LeafletEventMap = dynamic(() => import("@/components/map/EventMap"), { | ||
ssr: false, | ||
}); | ||
|
||
const EventMap = ({ | ||
longitude, | ||
latitude, | ||
name, | ||
}: { | ||
longitude: any; | ||
latitude: any; | ||
name: any; | ||
}) => <LeafletEventMap longitude={longitude} latitude={latitude} name={name} />; | ||
|
||
export default EventMap; |
Oops, something went wrong.