JSPM

  • Created
  • Published
  • Downloads 265
  • Score
    100M100P100Q92467F
  • License MIT

Reakit bootstrap system

Package Exports

  • reakit-system-bootstrap
  • reakit-system-bootstrap/Button
  • reakit-system-bootstrap/Composite
  • reakit-system-bootstrap/Dialog
  • reakit-system-bootstrap/Form
  • reakit-system-bootstrap/Group
  • reakit-system-bootstrap/Input
  • reakit-system-bootstrap/Menu
  • reakit-system-bootstrap/Popover
  • reakit-system-bootstrap/Role
  • reakit-system-bootstrap/Separator
  • reakit-system-bootstrap/Tab
  • reakit-system-bootstrap/Tabbable
  • reakit-system-bootstrap/Toolbar
  • reakit-system-bootstrap/Tooltip
  • reakit-system-bootstrap/palette

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-system-bootstrap) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

reakit-system-bootstrap

NPM version

Reakit system loosely based on Bootstrap.

This is experimental and may have breaking changes in minor versions.

Installation

npm:

npm i reakit-system-bootstrap

Yarn:

yarn add reakit-system-bootstrap

Usage

import React from "react";
import ReactDOM from "react-dom";
import { Provider, Button } from "reakit";
import * as system from "reakit-system-bootstrap";

function App() {
  return (
    <Provider unstable_system={system}>
      <Button unstable_system={{ palette: "primary", fill: "outline" }}>
        Button
      </Button>
    </Provider>
  );
}

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

License

MIT © Diego Haz