mirror of
https://github.com/Dokploy/website.git
synced 2026-06-19 06:05:27 +02:00
12 lines
287 B
TypeScript
12 lines
287 B
TypeScript
import type { 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;
|
|
}
|