0.0.5 • Published 4 years ago
@cebus/react-menu v0.0.5
Menu
The Menu related components allow you to display information over a given element.
Use
- Install the @cebus/react-menu component.
Using NPM
npm install @cebus/react-menuUsing Yarn
yarn add @cebus/react-menuInstall the @cebus/react-provider and our theme tokens from @cebus/react-theme
Set up the provider in your app:
import { Provider } from '@cebus/react-provider'
import { webLightTheme } from '@cebus/react-theme'
const MyApp = () => {
return (
<Provider theme={webLightTheme}>
<Provider>
)
}- Integrate the Menu components.
import { Provider } from '@cebus/react-provider'
import { webLightTheme } from '@cebus/react-theme'
import { Menu } from '@cebus/react-menu'
const MyApp = () => {
return (
<Provider theme={webLightTheme}>
<Menu>
// Add your menu here
</Menu>
<Provider>
)
}API
The Menu API extends off of the FluentUI Menu.