JSPM

  • Created
  • Published
  • Downloads 130051
  • Score
    100M100P100Q155178F
  • License MIT

Toolkit for building really interactive UIs with React

Package Exports

  • reakit
  • reakit/Avatar
  • reakit/Backdrop
  • reakit/Block
  • reakit/Blockquote
  • reakit/Box
  • reakit/Button
  • reakit/Code
  • reakit/Divider
  • reakit/Field
  • reakit/Flex
  • reakit/Grid
  • reakit/Group
  • reakit/Heading
  • reakit/Hidden
  • reakit/Image
  • reakit/Inline
  • reakit/InlineBlock
  • reakit/InlineFlex
  • reakit/Input
  • reakit/Label
  • reakit/Link
  • reakit/List
  • reakit/Navigation
  • reakit/Overlay
  • reakit/Paragraph
  • reakit/Popover
  • reakit/Portal
  • reakit/Provider
  • reakit/Sidebar
  • reakit/Table
  • reakit/Tabs
  • reakit/Toolbar
  • reakit/Tooltip
  • reakit/styled

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (reakit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme



reakit


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


๐ŸŒŽ Website   ยท   ๐Ÿ“š Guide   ยท   ๐Ÿ— Components


NPM version Build Status Coverage Status 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 as={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.

Backers

Thank you to all our backers! ๐Ÿ™

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website.

License

MIT ยฉ Diego Haz