.. | ||
dist | ||
lib | ||
lib-commonjs | ||
CHANGELOG.md | ||
LICENSE | ||
package.json | ||
README.md |
@fluentui/react-popover
React Popover components for Fluent UI React
To import React Popover components:
import { Popover, PopoverTrigger, PopoverSurface } from '@fluentui/react-popover';
<Popover>
<PopoverTrigger>
<button>Controls popover</button>
</PopoverTrigger>
<PopoverSurface>
<div className={example}>
<h3>Popover content</h3>
<div>This is some popover content</div>
</div>
</PopoverSurface>
</Popover>;