Files
web/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/layout.tsx
Joakim Jäderberg dc53ab9245 Merged in chore/upgrade-next (pull request #3124)
Upgrade next@15.5.6

* chore: upgrade next@15.5.6

* chore: upgrade turborepo@2.6.1

* fix typings for scandic-web

* fix: set correct type for pages

* cleanup

* fix more route.ts typing issues

* Merge branch 'master' of bitbucket.org:scandic-swap/web into chore/upgrade-next

* explicitly import the types


Approved-by: Linus Flood
2025-11-13 07:33:56 +00:00

8 lines
216 B
TypeScript

import styles from "./layout.module.css"
export default function StandardHotelReservationLayout({
children,
}: LayoutProps<"/[lang]/hotelreservation">) {
return <div className={styles.layout}>{children}</div>
}