import * as React from 'react'; import { MenuItem, IconMenu, MenuDivider } from '../../components/menu'; class IconMenuTest extends React.Component { state: any = { selected: undefined, }; handleShow = () => { console.log('Showing menu...'); }; handleHide = () => { console.log('Hiding menu...'); }; handleSelect = (value: any) => { console.log('Option selected', value); this.setState({ selected: value }); }; handleItem = () => { console.log('Refresh clicked'); }; render() { return (
Icon Menus

Although a menu can be used indepently with any component, we are providing a common use case with the icon menu.

); } } export default IconMenuTest;