1.0.0 • Published 8 years ago

vdux-hover v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

hover

js-standard-style

Hover component for vdux

Installation

$ npm install vdux-hover

Usage

<Hover /> accepts both normal children and 'function children'. If you pass a function child to hover, it will call that child with a bool indicating whether or not the mouse is currently over your element. Example:

function render () {
  return (
    <Hover>
      <MenuItem />
      {
        hover => hover && <Tooltip message='Use MenuItem to menu your items!!' />}
      }
    </Hover>
  )
}

That's all there is to it.

License

MIT