Files
web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/layout.tsx
2024-11-27 19:51:15 +01:00

18 lines
351 B
TypeScript

import styles from "./layout.module.css"
import { LangParams, LayoutArgs } from "@/types/params"
export default function HotelReservationLayout({
children,
modal,
}: React.PropsWithChildren<
LayoutArgs<LangParams> & { modal: React.ReactNode }
>) {
return (
<div className={styles.layout}>
{children}
{modal}
</div>
)
}