Files
dokploy/apps/website/app/layout.tsx
2024-09-06 13:42:06 +08:00

12 lines
278 B
TypeScript

import { ReactNode } from 'react'
type Props = {
children: ReactNode
}
// Since we have a `not-found.tsx` page on the root, a layout file
// is required, even if it's just passing children through.
export default function RootLayout({ children }: Props) {
return children
}