excalidraw/examples/excalidraw/with-nextjs/src/app/layout.tsx

12 lines
169 B
TypeScript

export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}