Socket
Socket
Sign inDemoInstall

ariakit-changesets-test

Package Overview
Dependencies
7
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ariakit-changesets-test

Toolkit for building accessible web apps with React


Version published
Weekly downloads
10
Maintainers
1
Created
Weekly downloads
 

Readme

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

Last updated on 10 Apr 2022

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