1234567891011121314151617181920212223242526 |
- // @flow
-
- // Public components
- import Popper, { placements } from './Popper';
- import Manager from './Manager';
- import Reference from './Reference';
- export { Popper, placements, Manager, Reference };
-
- // Public types
- import type { Placement } from 'popper.js';
- import type { ManagerProps } from './Manager';
- import type { ReferenceProps, ReferenceChildrenProps } from './Reference';
- import type {
- PopperChildrenProps,
- PopperArrowProps,
- PopperProps,
- } from './Popper';
- export type {
- Placement,
- ManagerProps,
- ReferenceProps,
- ReferenceChildrenProps,
- PopperChildrenProps,
- PopperArrowProps,
- PopperProps,
- };
|