razor-shared-library
Version:
10 lines (9 loc) • 359 B
TypeScript
import { MenuItemType } from './types';
interface Props {
menuItems: MenuItemType[];
selectedKey: string | null;
selectedColor: string;
onSelect: (key: string, onClick?: () => void) => void;
}
export default function SubMenuList({ menuItems, selectedKey, onSelect, selectedColor, }: Props): import("react/jsx-runtime").JSX.Element;
export {};