Files
web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/layout.tsx

10 lines
273 B
TypeScript

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