diff --git a/examples/with-nextjs-headless/src/app/blog-posts/layout.tsx b/examples/with-nextjs-headless/src/app/blog-posts/layout.tsx new file mode 100644 index 0000000000000..300e3e60ce26b --- /dev/null +++ b/examples/with-nextjs-headless/src/app/blog-posts/layout.tsx @@ -0,0 +1,7 @@ +export default function BlogPostsLayout({ + children, +}: { + children: React.ReactNode; +}) { + return
{children}
; +} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 7bfc63076515c..9608e4d1436a6 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -6,4 +6,4 @@ packages: - "!documentation" - "!examples/blog-sveltekit-crud" - "!examples/blog-react-aria" - - "!with-nextjs-headless" + - "!examples/with-nextjs-headless"