|
||
---|---|---|
.. | ||
index.ts | ||
Popover.module.scss | ||
Popover.tsx | ||
README.md |
Usage Example
import Popover from './Popover';
<Popover content={'This is popover text'}>
{(triggerRef: (el) => void) => (
<Button value="Hover me" ref={triggerRef} />
)}
</Popover>
or
import Popover from './Popover';
<Popover content={'This is popover text'}>
{(triggerRef: (el) => void) => (
<div ref={triggerRef}>Hover me</div>
)}
</Popover>