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
15 lines
308 B
TypeScript
15 lines
308 B
TypeScript
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 />
|
|
</>
|
|
)
|
|
}
|