Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Docz | 23,147 | 686 | 1,340 | 6 months ago | 275 | February 11, 2022 | 103 | mit | TypeScript | |
✍ It has never been so easy to document your things! | ||||||||||
Semantic Ui React | 12,997 | 8,465 | 1,129 | 24 days ago | 153 | May 31, 2022 | 187 | mit | JavaScript | |
The official Semantic-UI-React integration | ||||||||||
React Toolbox | 8,705 | 1,310 | 132 | a year ago | 66 | June 02, 2018 | 267 | mit | JavaScript | |
A set of React components implementing Google's Material Design specification with the power of CSS Modules | ||||||||||
Rebass | 7,881 | 744 | 282 | 2 months ago | 109 | October 28, 2019 | 96 | mit | JavaScript | |
:atom_symbol: React primitive UI components built with styled-system. | ||||||||||
Nextra | 6,494 | 18 | 13 hours ago | 109 | September 17, 2022 | 157 | mit | TypeScript | ||
Simple, powerful and flexible site generation framework with everything you love from Next.js. | ||||||||||
React Quill | 5,623 | 777 | 448 | 2 months ago | 49 | August 03, 2022 | 293 | mit | JavaScript | |
A Quill component for React. | ||||||||||
Theme Ui | 4,894 | 331 | 838 | 14 days ago | 460 | September 18, 2022 | 62 | mit | TypeScript | |
Build consistent, themeable React apps based on constraint-based design principles | ||||||||||
Next | 4,323 | 65 | 7,077 | 16 days ago | 450 | September 20, 2022 | 610 | mit | JavaScript | |
🦍 A configurable component library for web built on React. | ||||||||||
Playroom | 4,269 | 11 | 47 | 16 days ago | 87 | April 26, 2022 | 46 | mit | TypeScript | |
Design with JSX, powered by your own component library. | ||||||||||
React Mosaic | 3,347 | 30 | 17 | a month ago | 44 | August 03, 2022 | 21 | other | TypeScript | |
A React tiling window manager |
Alpha now available on NPM:
npm install [email protected]
yarn add [email protected]
Check out the latest progress and get involved on this branch, or add your thoughts and requests to this issue.
React implementation of the Tabler Dashboard UI Kit
Demo | Documentation | Issues | Slack.
Make sure you have Node.js 8+ and yarn installed.
yarn add tabler-react
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
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:
To setup and run a local copy:
git clone https://github.com/tabler/tabler-react
yarn install
in the root folderyarn install
in the example folderyarn 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.
MIT © jonthomp, AaronCoplan and the contributors.