Guest User

Untitled

a guest
Apr 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. compose((state) => ({ open: state.get('id') === 'this-cool-tooltip', ...state.toJS() }))(
  2. ({ open, top, left }) => {
  3. if (!open) return null;
  4. return <div style={{ position: 'absolute', top, left }}>Tooltip content</div>;
  5. }
  6. );
Add Comment
Please, Sign In to add comment