Package Exports
- @jmoxey/reakit
- @jmoxey/reakit/Avatar
- @jmoxey/reakit/Backdrop
- @jmoxey/reakit/Block
- @jmoxey/reakit/Blockquote
- @jmoxey/reakit/Box
- @jmoxey/reakit/Button
- @jmoxey/reakit/Code
- @jmoxey/reakit/Divider
- @jmoxey/reakit/Field
- @jmoxey/reakit/Flex
- @jmoxey/reakit/Grid
- @jmoxey/reakit/Group
- @jmoxey/reakit/Heading
- @jmoxey/reakit/Image
- @jmoxey/reakit/Inline
- @jmoxey/reakit/InlineBlock
- @jmoxey/reakit/InlineFlex
- @jmoxey/reakit/Input
- @jmoxey/reakit/Label
- @jmoxey/reakit/Link
- @jmoxey/reakit/List
- @jmoxey/reakit/Navigation
- @jmoxey/reakit/Overlay
- @jmoxey/reakit/Paragraph
- @jmoxey/reakit/Popover
- @jmoxey/reakit/Portal
- @jmoxey/reakit/Provider
- @jmoxey/reakit/Tabs
- @jmoxey/reakit/Tooltip
- @jmoxey/reakit/use
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 (@jmoxey/reakit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Toolkit for building composable, accessible and reliable UIs with React.
๐ Website ยท ๐ Guide ยท ๐ Components
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