Prepare hotelreservation routes * Prepare hotelreservation routes Approved-by: Matilda Landström
17 lines
291 B
TypeScript
17 lines
291 B
TypeScript
import styles from "./layout.module.css"
|
|
|
|
import type { ReactNode } from "react"
|
|
|
|
export default function StandardHotelReservationLayout({
|
|
children,
|
|
}: {
|
|
children: ReactNode
|
|
}) {
|
|
return (
|
|
<div className={styles.layout}>
|
|
{children}
|
|
{/* <SidePeek /> */}
|
|
</div>
|
|
)
|
|
}
|