Prepare hotelreservation routes * Prepare hotelreservation routes Approved-by: Matilda Landström
11 lines
280 B
TypeScript
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>
|
|
}
|