fix: my stay now uses ref id in query param rather than path param to support legacy * fix: my stay now uses ref id in query param rather than path param to support legacy Approved-by: Michael Zetterberg
15 lines
314 B
TypeScript
15 lines
314 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 (
|
|
<div>
|
|
{children}
|
|
<SidePeek />
|
|
</div>
|
|
)
|
|
}
|