import React from 'react'; import { Menu, MenuItem, MenuDivider } from '../../components/menu'; class MenuTest extends React.Component { state = { value: undefined }; handleSelect = (item) => { 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;