Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
React Bootstrap | 21,937 | 29,421 | 4,934 | 2 days ago | 208 | July 05, 2023 | 156 | mit | TypeScript | |
Bootstrap components built with React | ||||||||||
Js Stack From Scratch | 19,396 | 2 | a year ago | 1 | January 19, 2017 | 48 | mit | JavaScript | ||
🛠️⚡ Step-by-step tutorial to build a modern JavaScript stack. | ||||||||||
Reactstrap | 10,531 | 9,781 | 1,824 | 25 days ago | 166 | June 09, 2023 | 298 | mit | JavaScript | |
Simple React Bootstrap 5 components | ||||||||||
Primereact | 4,546 | 164 | 257 | 21 hours ago | 128 | August 01, 2023 | 248 | mit | CSS | |
The Most Complete React UI Component Library | ||||||||||
Coreui Free React Admin Template | 4,134 | 2 | 6 days ago | 2 | November 01, 2020 | 1 | mit | JavaScript | ||
CoreUI React is a free React admin template based on Bootstrap 5 | ||||||||||
Airframe React | 3,825 | 8 months ago | 45 | mit | JavaScript | |||||
Free Open Source High Quality Dashboard based on Bootstrap 4 & React 16: http://dashboards.webkom.co/react/airframe | ||||||||||
100 Days Of Code Frontend | 2,338 | 2 years ago | 4 | mit | ||||||
Curriculum for learning front-end development during #100DaysOfCode. | ||||||||||
React Bootstrap Table | 2,228 | 1,080 | 124 | 3 years ago | 211 | December 23, 2017 | 430 | mit | JavaScript | |
A Bootstrap table built with React.js | ||||||||||
Tabler React | 2,096 | 21 | 3 | 9 months ago | 66 | June 30, 2019 | 83 | mit | CSS | |
React components and demo for the Tabler UI theme. | ||||||||||
Devextreme Reactive | 2,015 | 130 | 104 | 2 months ago | 104 | July 03, 2023 | 79 | other | TypeScript | |
Business React components for Bootstrap and Material-UI |
Stateless React Components for Bootstrap 5.
If you're using Bootstrap 4, you'll need to use Reactstrap v8
Follow the create-react-app instructions to get started and then follow the reactstrap version of adding bootstrap.
npx create-react-app my-app
cd my-app/
npm start
or, if npx (Node >= 6 and npm >= 5.2 ) not available
npm install -g create-react-app
create-react-app my-app
cd my-app/
npm start
Then open http://localhost:3000/ to see your app. The initial structure of your app is setup. Next, let's add reactstrap and bootstrap.
Install reactstrap and Bootstrap from NPM. Reactstrap does not include Bootstrap CSS so this needs to be installed as well:
npm i bootstrap
npm i reactstrap react react-dom
Import Bootstrap CSS in the src/index.js
file:
import 'bootstrap/dist/css/bootstrap.css';
Import required reactstrap components within src/App.js
file or your custom component files:
import { Button } from 'reactstrap';
Now you are ready to use the imported reactstrap components within your component hierarchy defined in the render
method. Here is an example App.js
redone
using reactstrap.
These libraries are not bundled with Reactstrap and required at runtime:
This library contains React Bootstrap components that favor composition and control. The library does not depend on jQuery or Bootstrap javascript. However, Poppers.js via react-popper is relied upon for advanced positioning of content like Tooltips, Popovers, and auto-flipping Dropdowns.
There are a few core concepts to understand in order to make the most out of this library.
Your content is expected to be composed via props.children rather than using named props to pass in Components.
// Content passed in via props
const Example = (props) => {
return (
<p>This is a tooltip <TooltipTrigger tooltip={TooltipContent}>example</TooltipTrigger>!</p>
);
}
// Content passed in as children (Preferred)
const PreferredExample = (props) => {
return (
<p>
This is a <a href="#" id="TooltipExample">tooltip</a> example.
<Tooltip target="TooltipExample">
<TooltipContent/>
</Tooltip>
</p>
);
}
Attributes in this library are used to pass in state, conveniently apply modifier classes, enable advanced functionality (like tether), or automatically include non-content based elements.
Examples:
isOpen
- current state for items like dropdown, popover, tooltiptoggle
- callback for toggling isOpen
in the controlling componentcolor
- applies color classes, ex: <Button color="danger"/>
size
- for controlling size classes. ex: <Button size="sm"/>
tag
- customize component output by passing in an element name or Componentvisually-hidden
contentDocumentation search is powered by Algolia's DocSearch.
Here are some ready-to-go examples for CodeSandbox that you can experiment with.
reactstrap/code-sandbox-examples
Install dependencies:
yarn install
Run examples at http://localhost:8080/ with webpack dev server:
yarn start
Run tests & coverage report:
yarn cover
Watch tests:
yarn test
Release branches/versioning/notes will be automatically created and maintained by the release-please github action. When you're ready to publish the release, just merge the release branch. The release will be created, the new package will be published, and the updated docs will be deployed to https://reactstrap.github.io/.
Organizations and projects using reactstrap
reactstrap
with paging, sorting, filtering, grouping, selection, editing and virtual scrolling features.reactstrap
that visualizes data using a variety of series types, including bar, line, area, scatter, pie, and more.reactstrap
input component integrate seamlessly using Formik
Submit a PR to add to this list!
Looking to build, document and publish reusable components built on top of reactstrap
? Consider forking reactstrap/component-template to kickstart your project!