UNPKG

react-active-menu

Version:

A React hook to build an active scrolling menu navigation.

7 lines (6 loc) 292 B
import type { PropsWithChildren } from "react"; import type { ActiveMenuValues } from "./types"; export interface ActiveMenuProviderProps { menu: ActiveMenuValues; } export declare const ActiveMenuProvider: ({ children, menu }: PropsWithChildren<ActiveMenuProviderProps>) => JSX.Element;