Hover component for vdux
$ npm install vdux-hover
<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.
MIT