Files
web/app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/layout.tsx
2024-12-12 11:47:44 +01:00

10 lines
277 B
TypeScript

import styles from "./layout.module.css"
import type { LangParams, LayoutArgs } from "@/types/params"
export default function PaymentCallbackLayout({
children,
}: React.PropsWithChildren<LayoutArgs<LangParams>>) {
return <div className={styles.layout}>{children}</div>
}