How to use React-Bootstrap component?
Example
Installing React-BootstrapIn the Terminal, run:
npm install --save react-bootstrap
Add below to my-app\public\index.html in your project's public folder to get the latest styles.
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css">
my-app\src\App.js
import React, { Component } from 'react';
import { ButtonToolbar,Button } from 'react-bootstrap';
class App extends Component {
render() {
return (
<div>
<ButtonToolbar>
<Button bsStyle="primary" bsSize="large" disabled>
Primary button
</Button>
<Button bsSize="large" disabled>
Button
</Button>
</ButtonToolbar>
</div>
);
}
}
export default App;
Most Helpful This Week
How to create simple React Router to navigate multiple pages?
Getting Started with React and Hello World Example
How to use onChange and onClick event in React JS?
React Elements
Example of React Bootstrap Datatable
Glyphicon Rating Star component
Working with Forms, Inputs and onChange Events in ReactJs
React Components
React JS Count number of checkboxes are checked
Example of React JS with Material UI components