From 1191cc327c090680c7035baae34a6746b70e9b08 Mon Sep 17 00:00:00 2001 From: Bruno Nascimento Date: Fri, 25 Nov 2022 19:51:20 -0300 Subject: [PATCH] fix: missing root layout on app-static --- test/e2e/app-dir/app-static/app/layout.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/e2e/app-dir/app-static/app/layout.js 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} + + ) +}