diff --git a/examples/with-eslint/app/layout.tsx b/examples/with-eslint/app/layout.tsx new file mode 100644 index 0000000000000..112756e6bfcdc --- /dev/null +++ b/examples/with-eslint/app/layout.tsx @@ -0,0 +1,18 @@ +import type { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Create Next App", + description: "Generated by create next app", +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + + {children} + + ); +} diff --git a/examples/with-eslint/app/page.tsx b/examples/with-eslint/app/page.tsx new file mode 100644 index 0000000000000..6fc749459d3f9 --- /dev/null +++ b/examples/with-eslint/app/page.tsx @@ -0,0 +1,8 @@ +export default function Home() { + return ( +
+