()
| 8 | import NavbarSearch from "@theme/Navbar/Search"; |
| 9 | |
| 10 | function useNavbarItems() { |
| 11 | // TODO temporary casting until ThemeConfig type is improved |
| 12 | return useThemeConfig().navbar.items as NavbarItemConfig[]; |
| 13 | } |
| 14 | |
| 15 | function NavbarItems({ items }: { items: NavbarItemConfig[] }): JSX.Element { |
| 16 | return ( |