Merged in feat/prepare-hotelreservation-routes-in-sas (pull request #2581)
Prepare hotelreservation routes * Prepare hotelreservation routes Approved-by: Matilda Landström
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
.layout {
|
||||
background-color: var(--Background-Primary);
|
||||
min-height: 100dvh;
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
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>
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
export default async function PaymentCallbackPage() {
|
||||
// eslint-disable-next-line formatjs/no-literal-string-in-jsx
|
||||
return <div>payment-callback</div>
|
||||
}
|
||||
Reference in New Issue
Block a user