Outlook_Addin_LLM/node_modules/@fluentui/react-popover/README.md

24 lines
496 B
Markdown
Raw Permalink Normal View History

# @fluentui/react-popover
**React Popover components for [Fluent UI React](https://react.fluentui.dev)**
To import React Popover components:
```js
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>;
```