Socket
Socket
Sign inDemoInstall

@reach/popover

Package Overview
Dependencies
Maintainers
4
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

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
119K
decreased by-22.56%
Maintainers
4
Weekly downloads
 
Created
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

Package last updated on 28 Mar 2021

Did you know?

Socket

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
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc