diff --git a/test/e2e/app-dir/app-static/app/layout.js b/test/e2e/app-dir/app-static/app/layout.js new file mode 100644 index 000000000000..f37ea744b8e0 --- /dev/null +++ b/test/e2e/app-dir/app-static/app/layout.js @@ -0,0 +1,10 @@ +export default function Layout({ children }) { + return ( + + + my static blog + + {children} + + ) +}