Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reactstrap/reactstrap
Simple React Bootstrap 5 components
https://github.com/reactstrap/reactstrap
bootstrap components hacktoberfest javascript react reactstrap ui
Last synced: 3 days ago
JSON representation
Simple React Bootstrap 5 components
- Host: GitHub
- URL: https://github.com/reactstrap/reactstrap
- Owner: reactstrap
- License: mit
- Created: 2016-02-19T08:01:36.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-09-26T09:40:49.000Z (3 months ago)
- Last Synced: 2024-12-08T08:00:46.506Z (4 days ago)
- Topics: bootstrap, components, hacktoberfest, javascript, react, reactstrap, ui
- Language: JavaScript
- Homepage: https://reactstrap.github.io
- Size: 7.27 MB
- Stars: 10,579
- Watchers: 163
- Forks: 1,298
- Open Issues: 309
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-react-cn - reactstrap - Simple React Bootstrap 4 components (Uncategorized / Uncategorized)
- awesome-react-components-all - reactstrap - Simple React Bootstrap 4 components. (Uncategorized / Uncategorized)
- awesome - reactstrap - Simple React Bootstrap 4 components (JavaScript)
- awesome-react - reactstrap - Simple React Bootstrap 4 components (Uncategorized / Uncategorized)
- awesome-react - reactstrap - Simple React Bootstrap 4 components. ![](https://img.shields.io/github/stars/reactstrap/reactstrap.svg?style=social&label=Star) (UI Frameworks / style)
- awesome-learning-resources - reactstrap - Simple React Bootstrap 4 components (Uncategorized / Uncategorized)
- awesome-list - reactstrap - Simple React Bootstrap 4 components. (Cases / Responsive)
- react-cheatsheet - Reactstrap
- awesome-bootstrap - reactstrap - Stateless React Components for Bootstrap 4. [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) (UI Kits & libraries / Design Tools)
- best-of-react - GitHub - 22% open ยท โฑ๏ธ 30.04.2024): (UI Frameworks & Libraries)
- awesome-react - reactstrap - Simple React Bootstrap 4 components ` ๐ 3 months ago` (React [๐](#readme))
- StarryDivineSky - reactstrap/reactstrap
README
[![reactstrap](https://cloud.githubusercontent.com/assets/399776/13906899/1de62f0c-ee9f-11e5-95c0-c515fee8e918.png)](https://reactstrap.github.io)
[![NPM Version](https://img.shields.io/npm/v/reactstrap.svg?branch=master)](https://www.npmjs.com/package/reactstrap) [![Build Status](https://github.com/reactstrap/reactstrap/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/reactstrap/reactstrap) [![Coverage Status](https://coveralls.io/repos/github/reactstrap/reactstrap/badge.svg?branch=master)](https://coveralls.io/github/reactstrap/reactstrap?branch=master) [![License](https://img.shields.io/npm/l/reactstrap.svg)](https://github.com/reactstrap/reactstrap/blob/master/LICENSE)
# reactstrap
Stateless React Components for Bootstrap 5.
If you're using Bootstrap 4, you'll need to use [Reactstrap v8](https://deploy-preview-2356--reactstrap.netlify.app/)
## Getting Started
Follow the [create-react-app instructions](https://create-react-app.dev/docs/getting-started) to get started and then follow the reactstrap version of [adding bootstrap](#adding-bootstrap).
### tl;dr
```
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-appcreate-react-app my-app
cd my-app/
npm start
```Then open [http://localhost:3000/](http://localhost:3000/) to see your app. The initial structure of your app is setup. Next, let's [add reactstrap and bootstrap](#adding-bootstrap).
### Adding 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:
```js
import 'bootstrap/dist/css/bootstrap.css';
```Import required reactstrap components within ```src/App.js``` file or your custom component files:
```js
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`](https://gist.github.com/Thomas-Smyth/006fd507a7295f17a8473451938f9935) redone
using reactstrap.### Dependencies
##### Required Peer Dependencies
These libraries are not bundled with Reactstrap and required at runtime:
* [**react**](https://www.npmjs.com/package/react)
* [**react-dom**](https://www.npmjs.com/package/react-dom)## About the Project
This library contains React Bootstrap components that favor composition and control. The library does not depend on jQuery or Bootstrap javascript. However, [Poppers.js](https://popper.js.org/) via [react-popper](https://github.com/popperjs/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.
1. Your content is expected to be composed via props.children rather than using named props to pass in Components.
```js
// Content passed in via props
const Example = (props) => {
return (
This is a tooltip example!
);
}// Content passed in as children (Preferred)
const PreferredExample = (props) => {
return (
This is a tooltip example.
);
}
```2. 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, tooltip
- `toggle` - callback for toggling `isOpen` in the controlling component
- `color` - applies color classes, ex: ``
- `size` - for controlling size classes. ex: ``
- `tag` - customize component output by passing in an element name or Component
- boolean based props (attributes) when possible for alternative style classes or `visually-hidden` content## [Documentation](https://reactstrap.github.io)
https://reactstrap.github.io
Documentation search is powered by [Algolia's DocSearch](https://community.algolia.com/docsearch/).
## [CodeSandbox Examples](https://github.com/reactstrap/code-sandbox-examples)
Here are some ready-to-go examples for [CodeSandbox](https://codesandbox.io/) that you can experiment with.
https://github.com/reactstrap/code-sandbox-examples
## [Contributing](CONTRIBUTING.md)
## Development
Install dependencies:
```sh
yarn install
```Run examples at [http://localhost:8080/](http://localhost:8080/) with webpack dev server:
```sh
yarn start
```Run tests & coverage report:
```sh
yarn cover
```Watch tests:
```sh
yarn test
```## Releasing
Release branches/versioning/notes will be automatically created and maintained by the [release-please](https://github.com/googleapis/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/.
## In the wild
Organizations and projects using `reactstrap`
- [airframe-react](https://github.com/0wczar/airframe-react) - [demo](http://dashboards.webkom.co/react/airframe/) - Airframe provides all the components a developer needs to build data-intensive web apps using React.
- [component-template](https://reactstrap.github.io/component-template/)
- [video-react](https://video-react.github.io/)
- [CoreUI-Free-Bootstrap-Admin-Template](https://github.com/mrholek/CoreUI-Free-Bootstrap-Admin-Template) - [demo](http://coreui.io/demo/React_Demo/#/)
- [Admin dashboard example app built with reactstrap](https://github.com/reduction-admin/react-reduction) - [demo](https://reduction-admin.firebaseapp.com/)
- [DevExtreme React Grid](https://devexpress.github.io/devextreme-reactive/react/grid/) - It's a stateless data grid built on top of `reactstrap` with paging, sorting, filtering, grouping, selection, editing and virtual scrolling features.
- [DevExtreme React Chart](https://devexpress.github.io/devextreme-reactive/react/chart/) - A chart built on top of `reactstrap` that visualizes data using a variety of series types, including bar, line, area, scatter, pie, and more.
- [reactstrap-scrollspy](https://github.com/keidrun/reactstrap-scrollspy/) - [demo](https://keidrun.github.io/reactstrap-scrollspy/)
- [formstrap](https://github.com/pedox/formstrap/) - [demo](https://pedox.github.io/formstrap/) - Let your `reactstrap` input component integrate seamlessly using `Formik`
- [Jimu UI](https://developers.arcgis.com/experience-builder/api-reference/jimu-ui/) - [demo](https://developers.arcgis.com/experience-builder/storybook/?path=/story/welcome--page) - The UI library for [ArcGIS Experience Builder](https://developers.arcgis.com/experience-builder/) mapping platform.Submit a PR to add to this list!
Looking to build, document and publish reusable components built on top of `reactstrap`? Consider forking https://github.com/reactstrap/component-template to kickstart your project!