Socket
Socket
Sign inDemoInstall

@reach/popover

Package Overview
Dependencies
5
Maintainers
4
Versions
52
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @reach/popover

Render a portal positioned relative to another element.


Version published
Weekly downloads
213K
decreased by-3.42%
Maintainers
4
Created
Weekly downloads
 

Readme

Source

@reach/popover

Stable release MIT license

import * as React from "react";
import Popover, { positionDefault } from "@reach/popover";

function Example() {
  const ref = React.useRef(null);
  const [value, setValue] = React.useState("");
  return (
    <div>
      <label>
        <span>Type for a special message</span>
        <input
          type="text"
          ref={ref}
          onChange={(event) => setValue(event.target.value)}
        />
      </label>

      {value.length > 0 && (
        <Popover targetRef={ref} position={positionDefault}>
          <div>
            <p>Whoa! Look at me!</p>
          </div>
        </Popover>
      )}
    </div>
  );
}

FAQs

Last updated on 17 Oct 2021

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc