/reakit

Toolkit for building really interactive UIs with React

Primary LanguageTypeScriptMIT LicenseMIT



reakit


Toolkit for building composable, accessible and reliable UIs with React.


🌎 Website   ·   📚 Guide   ·   🏗 Components


NPM version Build Status Coverage Status Backers Sponsors Spectrum Slack

Installation

npm i reakit

Thanks to @nosebit for the package name on npm.

Example


See and edit full source code on CodeSandbox

import React from "react";
import { render } from "react-dom";
import { Button, Popover } from "reakit";

const App = () => (
  <Popover.Container>
    {popover => (
      <Button use={Popover.Toggle} {...popover}>
        Toggle
        <Popover {...popover}>
          <Popover.Arrow />
          Popover
        </Popover>
      </Button>
    )}
  </Popover.Container>
);

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

Contributors

This project exists thanks to all the people who contribute.

Supporters

By donating $5 or more you help in the development of this project. Thank you to all our supporters! 🙏

License

MIT © Diego Haz