UNPKG

@keen.io/ui-core

Version:

Keen visual components library

13 lines (12 loc) 274 B
import { FC } from 'react'; declare type Props = { menuItems: Item[]; onChange: (item: string) => void; activeItemId?: string; }; declare type Item = { id: string; label: string; }; declare const SideMenu: FC<Props>; export default SideMenu;