-
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 (#60)
fix : - event detail - Rating component Co-authored-by: alexandre-kakal-akarah <[email protected]>
- Loading branch information
1 parent
4a99336
commit b89d606
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.