10 lines
278 B
TypeScript
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>
|
|
}
|