Skip to content

Toolkit for building accessible rich web apps with React

License

Notifications You must be signed in to change notification settings

steviewonders3/reakit

This branch is 3503 commits behind ariakit/ariakit:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

172717a · Dec 7, 2021
Nov 21, 2019
Dec 5, 2021
Nov 5, 2020
Aug 20, 2020
Jun 10, 2021
Apr 11, 2019
Dec 7, 2021
Jun 17, 2020
Oct 10, 2020
Nov 24, 2019
Jan 22, 2018
Apr 17, 2020
Jun 4, 2020
Apr 17, 2020
Aug 13, 2020
Dec 3, 2021
Aug 24, 2020
Nov 18, 2021
Jul 26, 2018
Jul 11, 2020
Mar 4, 2019
Dec 3, 2021
Nov 12, 2020
Mar 14, 2020
Aug 20, 2020
Aug 20, 2020
Sep 5, 2020
Jun 17, 2020
Dec 25, 2020
Oct 10, 2020
Oct 10, 2020
Dec 3, 2021

Repository files navigation


Reakit symbol

Reakit

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


NPM version NPM downloads Build Status
Sponsors Backers Follow Reakit on Twitter

Sponsors

By donating $100 or more you become a sponsor and help in the development of this project. Thank you to all our sponsors! 🙏

Backers

By donating $5 or more you become a backer and help in the development of this project. Thank you to all our backers! 🙏

Installation

npm:

npm i reakit

Yarn:

yarn add reakit

Thanks to @nosebit for the package name on npm.

Usage

import React from "react";
import ReactDOM from "react-dom";
import { useDialogState, Dialog, DialogDisclosure } from "reakit";

function App() {
  const dialog = useDialogState();
  return (
    <div>
      <DialogDisclosure {...dialog}>Open dialog</DialogDisclosure>
      <Dialog {...dialog} aria-label="Welcome">
        Welcome to Reakit!
      </Dialog>
    </div>
  );
}

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

Play with this on CodeSandbox and read the documentation to learn more.

Contributors

This project exists thanks to all the people who contribute. Learn more on the contributing guide.

reakit Logo by Leonardo Elias.

Attribution

Powered by Vercel

Browser testing provided by

License

MIT © Diego Haz

About

Toolkit for building accessible rich web apps with React

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 95.5%
  • JavaScript 3.7%
  • Other 0.8%