Socket
Socket
Sign inDemoInstall

@hookeasy/use-hover

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @hookeasy/use-hover

React Hook to update your hover event


Version published
Weekly downloads
2
Maintainers
1
Install size
1.88 kB
Created
Weekly downloads
 

Readme

Source

@hookeasy/use-hover

React Hook to update your hover event

install

npm i @hookeasy/use-hover

or

yarn add @hookeasy/use-hover

example

import React, { useState } from "react";
import ReactDOM from "react-dom";
import useHover from "@hookeasy/use-hover";

const App = () => {
  const sayHello = () => console.log("say Hello");

  const title = useHover(sayHello);

  return (
    <div className="App">
      <h1 ref={title}>HI</h1>
    </div>
  );
};

const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);

Keywords

FAQs

Last updated on 18 Jul 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc