@pongo-ui/react-menu
v0.1.10
Published
A collection of menu related components used to display information over a given element.
Downloads
25
Readme
Menu
The Menu related components allow you to display information over a given element.
Use
- Install the @pongo-ui/react-menu component.
Using NPM
npm install @pongo-ui/react-menu
Using Yarn
yarn add @pongo-ui/react-menu
Install the @pongo-ui/react-provider and our theme tokens from @pongo-ui/react-theme
Set up the provider in your app:
import { Provider } from '@pongo-ui/react-provider'
import { webLightTheme } from '@pongo-ui/react-theme'
const MyApp = () => {
return (
<Provider theme={webLightTheme}>
<Provider>
)
}
- Integrate the Menu components.
import { Provider } from '@pongo-ui/react-provider'
import { webLightTheme } from '@pongo-ui/react-theme'
import { Menu } from '@pongo-ui/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.