Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ariakit-changesets-test

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ariakit-changesets-test

Toolkit for building accessible web apps with React

  • 2.3.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-40%
Maintainers
1
Weekly downloads
 
Created
Source

ariakit-changesets-test-changesets-test

Toolkit for building accessible web apps with React.
Explore website »


NPM version NPM downloads Build ariakit-changesets-test ariakit-changesets-testtps://github.com/ariakit-changesets-test/ariakit-changesets-test/workflows/ci/badge.svg?event=push&branch=main ariakit-changesets-testcariakit-changesets-test://codecov.io/gh/ariakit-changesets-test/ariakit-changesets-test/branch/main/graph/badge.svg" />
Sponsors Backers Follow ariakit-changesets-test-changesets-test on Twitter

If you're looking for v1, check out v1 branch.

Installation

npm:

npm i ariakit-changesets-test-changesets-test

Yarn:

yarn add ariakit-changesets-test-changesets-test

Usage

import { createRoot } from "react-dom/client";
import {
  Button,
  Dialog,
  DialogHeading,
  DialogDescription,
  useDialogState,
} from "ariakit-changesets-test-changesets-test";

function App() {
  const dialog = useDialogState();
  return (
    <>
      <Button onClick={dialog.toggle}>Open dialog</Button>
      <Dialog state={dialog}>
        <DialogHeading>Welcome</DialogHeading>
        <DialogDescription>Welcome to Reakit!</DialogDescription>
      </Dialog>
    </>
  );
}

createRoot(document.getElementById("root")).render(<App />);

Keywords

FAQs

Package last updated on 10 Apr 2022

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

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc