Files
web/apps/partner-sas/app/[lang]/hotelreservation/(payment-callback)/payment-callback/layout.tsx
Anton Gunnarsson ace44d00dc Merged in feat/prepare-hotelreservation-routes-in-sas (pull request #2581)
Prepare hotelreservation routes

* Prepare hotelreservation routes


Approved-by: Matilda Landström
2025-07-30 13:22:36 +00:00

11 lines
280 B
TypeScript

import styles from "./layout.module.css"
// TODO is this really needed? Similar to standard layout, but without SidePeek?
export default function PaymentCallbackLayout({
children,
}: {
children: React.ReactNode
}) {
return <div className={styles.layout}>{children}</div>
}