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
React JS Count number of checkboxes are checked
Create Functional Component using ES6 Arrow Syntax
How to render one component in another component in React JS?
Component displays Height and Width on window resize
How to set property values using expression?
How to pass data from child component to its parent in ReactJS?