Skip to content
This repository was archived by the owner on Mar 1, 2024. It is now read-only.

tabler/tabler-react

Folders and files

NameName
Last commit message
Last commit date
May 25, 2018
Mar 2, 2021
Apr 13, 2018
Oct 1, 2018
Mar 7, 2021
Apr 13, 2018
Apr 13, 2018
Jul 29, 2018
Jul 1, 2018
Dec 3, 2018
Jun 2, 2018
Jun 1, 2019
May 20, 2018
Jan 20, 2019
May 8, 2018
Feb 6, 2021
May 22, 2018
Dec 5, 2018
Mar 7, 2021
Jun 2, 2019
May 25, 2018
Jun 2, 2018
Jun 2, 2018
Mar 7, 2021

Repository files navigation

Update - June 2019: Version 2

Alpha now available on NPM:

npm install tabler-react@alpha yarn add tabler-react@alpha

Check out the latest progress and get involved on this branch, or add your thoughts and requests to this issue.

Tabler React

React implementation of the Tabler Dashboard UI Kit

NPM Type definitions Greenkeeper badge Commitizen friendly

Demo | Documentation | Issues | Slack.

Install

Make sure you have Node.js 8+ and yarn installed.

yarn add tabler-react

Example

import React, { Component } from "react";

import "tabler-react/dist/Tabler.css";

import { Card, Button } from "tabler-react";

class MyCard extends Component {
  render() {
    return (
      <Card>
        <Card.Header>
          <Card.Title>Card Title</Card.Title>
        </Card.Header>
        <Card.Body>
          <Button color="primary">A Button</Button>
        </Card.Body>
      </Card>
    );
  }
}

For more examples and documentation see the demo website

Contributing

There are plenty of opportunities to get involved. Pick an outstanding task, let us know what you are working on and fire away with any questions.

The package is made up of 2 main folders:

  • /src contains all the Tabler React components
  • /example is our create-react-app based demo website

To setup and run a local copy:

  1. Clone this repo with git clone https://github.com/tabler/tabler-react
  2. Run yarn install in the root folder
  3. Run yarn install in the example folder
  4. In seperate terminal windows, run yarn start in the root and example folders.

You should now be up and running with live browser reloading of the example website while you work on Tabler React components in the /src folder.

When you're done working on your changes, submit a PR with the details and include a screenshot if you've changed anything visually.

License

MIT © jonthomp, AaronCoplan and the contributors.