UNPKG

@moderntribe/wme-ui

Version:

Components and hooks to build the best UX/UI admin wizards

13 lines 354 B
import { BoxProps } from '@mui/material'; interface JumpNavProps extends BoxProps { title?: string; links: Array<{ id: string; label: string; onClick: () => void; remainingTasks?: number; }>; } export default function JumpNav(props: JumpNavProps): JSX.Element; export {}; //# sourceMappingURL=jump-nav.d.ts.map