13 lines
325 B
TypeScript
13 lines
325 B
TypeScript
import { notFound } from "next/navigation"
|
|
|
|
import { env } from "@/env/server"
|
|
|
|
import styles from "./layout.module.css"
|
|
|
|
// route groups needed as layouts have different bgc
|
|
export default function ConfirmedBookingLayout({
|
|
children,
|
|
}: React.PropsWithChildren) {
|
|
return <div className={styles.layout}>{children}</div>
|
|
}
|