react-cascading-menu
Version:
A powerful React cascading dropdown component with multi-selection, search functionality, and hierarchical navigation. Perfect for building category selectors, dependent dropdowns, and nested menu systems with TypeScript support.
12 lines (11 loc) • 380 B
TypeScript
import React from "react";
import { ItemId, MenuGroupMap } from "../types";
import "../classes.css";
interface Props {
leafNodes: ItemId[][];
handleTagRemoval: (selectionPath: ItemId[]) => void;
handleSelectionPopulation: (selectionPath: ItemId[]) => void;
menuGroupMap: MenuGroupMap;
}
declare function Tags(props: Props): React.JSX.Element;
export default Tags;