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 7ea867c commit a258779Copy full SHA for a258779
1 file changed
src/theme/Navbar/index.tsx
@@ -0,0 +1,15 @@
1
+import React, {type ReactNode} from 'react';
2
+import Navbar from '@theme-original/Navbar';
3
+import type NavbarType from '@theme/Navbar';
4
+import type {WrapperProps} from '@docusaurus/types';
5
+
6
7
+type Props = WrapperProps<typeof NavbarType>;
8
9
+export default function NavbarWrapper(props: Props): ReactNode {
10
+ return (
11
+ <>
12
+ <Navbar {...props} />
13
+ </>
14
+ );
15
+}
0 commit comments