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

496 B

@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>;