Setup booking-confirmation page in SAS * Setup booking-confirmation page in SAS move booking-confirmation tracking to booking-flow * remove unused param * Add test cards to documentation * Fix payment callback page to use correct status Approved-by: Anton Gunnarsson Approved-by: Hrishikesh Vaipurkar
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>
|
|
}
|