import * as React from 'react'; import { Menu, MenuItem, MenuDivider } from '../../components/menu'; class MenuTest extends React.Component { state: any = { value: undefined, }; handleSelect = (item: any) => { console.log('Menu selection changed!!, now its', item); this.setState({ value: item }); }; handleItemClick = () => { console.log('This item is so special that has a special handler'); }; render() { return (
Menus

This tabs can be disabled or hidden

); } } export default MenuTest;