feat(SW-914): add correct import
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
export { default as AboutTheHotelSidePeek } from "./AboutTheHotel"
|
||||
<<<<<<< HEAD
|
||||
export { default as RoomSidePeek } from "./Room"
|
||||
=======
|
||||
export { default as AmenitiesSidePeek } from "./Amenities"
|
||||
>>>>>>> de3b70ce (feat(SW-914): add correct import)
|
||||
export { default as WellnessAndExerciseSidePeek } from "./WellnessAndExercise"
|
||||
|
||||
@@ -30,7 +30,11 @@ import PreviewImages from "./PreviewImages"
|
||||
import { Rooms } from "./Rooms"
|
||||
import {
|
||||
AboutTheHotelSidePeek,
|
||||
<<<<<<< HEAD
|
||||
RoomSidePeek,
|
||||
=======
|
||||
AmenitiesSidePeek,
|
||||
>>>>>>> de3b70ce (feat(SW-914): add correct import)
|
||||
WellnessAndExerciseSidePeek,
|
||||
} from "./SidePeeks"
|
||||
import TabNavigation from "./TabNavigation"
|
||||
@@ -177,6 +181,7 @@ export default async function HotelPage({ hotelId }: HotelPageProps) {
|
||||
</>
|
||||
) : null}
|
||||
<SidePeekProvider>
|
||||
<<<<<<< HEAD
|
||||
<SidePeek
|
||||
contentKey={amenities[lang]}
|
||||
title={intl.formatMessage({ id: "Amenities" })}
|
||||
@@ -184,6 +189,10 @@ export default async function HotelPage({ hotelId }: HotelPageProps) {
|
||||
{/* TODO: Render amenities as per the design. */}
|
||||
Read more about the amenities here
|
||||
</SidePeek>
|
||||
=======
|
||||
{/* eslint-disable import/no-named-as-default-member */}
|
||||
<AmenitiesSidePeek amenitiesList={hotelDetailedFacilities} />
|
||||
>>>>>>> de3b70ce (feat(SW-914): add correct import)
|
||||
<AboutTheHotelSidePeek
|
||||
hotelAddress={address}
|
||||
coordinates={location}
|
||||
@@ -199,10 +208,7 @@ export default async function HotelPage({ hotelId }: HotelPageProps) {
|
||||
{/* TODO */}
|
||||
Restaurant & Bar
|
||||
</SidePeek>
|
||||
<WellnessAndExerciseSidePeek
|
||||
healthFacilities={healthFacilities}
|
||||
buttonUrl="#"
|
||||
/>
|
||||
<WellnessAndExerciseSidePeek healthFacilities={healthFacilities} />
|
||||
<SidePeek
|
||||
contentKey={activities[lang]}
|
||||
title={intl.formatMessage({ id: "Activities" })}
|
||||
|
||||
Reference in New Issue
Block a user