Files
web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/layout.tsx
2024-12-12 11:47:44 +01:00

10 lines
278 B
TypeScript

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