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 2a46a53 commit 43d6439Copy full SHA for 43d6439
app/layout.tsx
@@ -11,7 +11,7 @@ export default function Layout({
11
children,
12
}: {
13
children: React.ReactNode;
14
-}): JSX.Element {
+}): React.ReactElement {
15
return (
16
<html lang="en" className="dark">
17
<body
app/not-found.tsx
@@ -4,7 +4,7 @@ export const metadata: Metadata = {
4
title: "404: Not Found",
5
};
6
7
-export default function Custom404(): JSX.Element {
+export default function Custom404(): React.ReactElement {
8
9
<div className="flex flex-col items-center justify-center h-screen">
10
<h1 className="font-bold m-4 text-6xl">404</h1>
0 commit comments