We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 376577b commit ec91fbfCopy full SHA for ec91fbf
examples/nextjs/app/layout.tsx
@@ -3,7 +3,7 @@ import { SharedRootLayout } from "shared-ui";
3
4
const inter = Inter({ subsets: ["latin"] });
5
6
-export default function RootLayout({ children }: { children: React.ReactNode }): JSX.Element {
+export default function RootLayout({ children }: { children: React.ReactNode }) {
7
return (
8
<html lang="en">
9
<body>
examples/nextjs/app/page.tsx
@@ -1,3 +1,3 @@
1
-export default function Home(): JSX.Element {
+export default function Home() {
2
return <h1>Next.js Example</h1>;
}
0 commit comments