Skip to content

richardzcode/bootstrap-4-react

Folders and files

NameName
Last commit message
Last commit date
Jul 27, 2019
Aug 4, 2019
Sep 17, 2018
Mar 9, 2019
Jul 5, 2021
Mar 9, 2019
Aug 7, 2018
Sep 4, 2018
Aug 24, 2018
Aug 6, 2018
Sep 10, 2018
Sep 9, 2018
Jul 5, 2021
Jul 27, 2019
Oct 3, 2018

Repository files navigation

bootstrap-4-react

License: MIT npm version npm downloads GitHub last commit

Bootstrap 4 React components.

This library helps render Bootstrap 4 markups in React. Developers can always fall back to Bootstrap original syntaxes for advanced cases.

Get started

npm install --save bootstrap-4-react

Then start adding components, no additional CSS/JS needed.

import React, { Component } from 'react';
import { Alert } from 'bootstrap-4-react';

export default class App extends Component {
  render() {
    return <Alert primary>Primary Alert</Alert>
  }
}

Documentation

Documentation is built by bootstrap-4-react itself, check source code

Examples

Rewrite Bootstrap examples in React

bootstrap-4-react site examples