dropdown-menu-plugin
v1.0.1
Published
A CSS-based dropdown menu plugin
Downloads
2
Readme
import React from 'react'; import DropdownMenu from 'react-dropdown-menu-plugin';
const App = () => { const menuItems = [ { title: 'Home', link: '/' }, { title: 'Services', link: '/services', dropdown: [ { title: 'Web Design', link: '/services/web-design' }, { title: 'SEO', link: '/services/seo' }, ] }, { title: 'About', link: '/about' }, ];
return ( ); };
export default App;