Skip to content

Commit a258779

Browse files
committed
update...
1 parent 7ea867c commit a258779

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/theme/Navbar/index.tsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)