import React from 'react'; import { Menu, MenuItem, MenuDivider } from '../../components/menu'; class MenuTest extends React.Component { handleSelect = (e, instance) => { console.log('Menu selection changed!!, now its', instance.getValue()); }; 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;