Merged in feat/sw-2403-mystay-webview (pull request #1828)

Feat/sw-2403 - Adding webview for MyStay

* feat/webview - added for my stay

* wip

* Passing headers so we can get the lang

* Cleanup

* Refactored and some performance improvements


Approved-by: Christian Andolf
This commit is contained in:
Linus Flood
2025-04-17 08:48:52 +00:00
parent 3ce3063973
commit cfa8c166a3
7 changed files with 169 additions and 56 deletions

View File

@@ -0,0 +1,14 @@
import SidePeek from "@/components/HotelReservation/SidePeek"
import type { LangParams, LayoutArgs } from "@/types/params"
export default function HotelReservationLayout({
children,
}: React.PropsWithChildren<LayoutArgs<LangParams>>) {
return (
<>
{children}
<SidePeek />
</>
)
}