19 lines
430 B
TypeScript
19 lines
430 B
TypeScript
import Title from "@/components/TempDesignSystem/Text/Title"
|
|
|
|
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}>
|
|
<Title as="h1" color="black">
|
|
Lorem, ipsum.
|
|
</Title>
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|