14 lines
352 B
TypeScript
14 lines
352 B
TypeScript
import { notFound } from "next/navigation"
|
|
|
|
import { env } from "@/env/server"
|
|
|
|
import styles from "./layout.module.css"
|
|
|
|
import { LangParams, LayoutArgs } from "@/types/params"
|
|
|
|
export default function PaymentCallbackLayout({
|
|
children,
|
|
}: React.PropsWithChildren<LayoutArgs<LangParams>>) {
|
|
return <div className={styles.layout}>{children}</div>
|
|
}
|