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 27b948f commit 50db5e3Copy full SHA for 50db5e3
src/theme/NotFound/index.tsx
@@ -0,0 +1,14 @@
1
+import React, { type ReactNode } from "react";
2
+import NotFound from "@theme-original/NotFound";
3
+import type NotFoundType from "@theme/NotFound";
4
+import type { WrapperProps } from "@docusaurus/types";
5
+
6
+type Props = WrapperProps<typeof NotFoundType>;
7
8
+export default function NotFoundWrapper(props: Props): ReactNode {
9
+ return (
10
+ <>
11
+ <NotFound {...props} />
12
+ </>
13
+ );
14
+}
0 commit comments