diff --git a/examples/reproduction-template/app/layout.tsx b/examples/reproduction-template/app/layout.tsx index 78cbcf1c7e14c..c46cb020b58ef 100644 --- a/examples/reproduction-template/app/layout.tsx +++ b/examples/reproduction-template/app/layout.tsx @@ -1,7 +1,10 @@ -export default function RootLayout({ children }) { +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { return ( - - + {children} );