Skip to content

Commit ec91fbf

Browse files
committed
fix: remove JSX namespace
1 parent 376577b commit ec91fbf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/nextjs/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { SharedRootLayout } from "shared-ui";
33

44
const inter = Inter({ subsets: ["latin"] });
55

6-
export default function RootLayout({ children }: { children: React.ReactNode }): JSX.Element {
6+
export default function RootLayout({ children }: { children: React.ReactNode }) {
77
return (
88
<html lang="en">
99
<body>

examples/nextjs/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export default function Home(): JSX.Element {
1+
export default function Home() {
22
return <h1>Next.js Example</h1>;
33
}

0 commit comments

Comments
 (0)