17 lines
380 B
TypeScript
17 lines
380 B
TypeScript
import BookingWidget from "@/components/BookingWidget"
|
|
|
|
import styles from "./layout.module.css"
|
|
|
|
import { LangParams, LayoutArgs } from "@/types/params"
|
|
|
|
export default function HotelReservationLayout({
|
|
children,
|
|
}: React.PropsWithChildren<LayoutArgs<LangParams>>) {
|
|
return (
|
|
<>
|
|
<BookingWidget />
|
|
<div className={styles.layout}>{children}</div>
|
|
</>
|
|
)
|
|
}
|