Skip to content

Commit 5194cc2

Browse files
authored
Merge pull request #194 from codeharborhub/dev-1
update...
2 parents 1c23379 + a258779 commit 5194cc2

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)