Skip to content

Instantly share code, notes, and snippets.

@l4sh
Last active January 30, 2017 01:14
Show Gist options
  • Save l4sh/c56c37fc77d94cca3ad75623874ea4c5 to your computer and use it in GitHub Desktop.
Save l4sh/c56c37fc77d94cca3ad75623874ea4c5 to your computer and use it in GitHub Desktop.
Add Bootstrap to create-react-app

Install bootstrap

npm install bootstrap react-bootstrap -S

Import CSS & theme

Edit index.js and add the following imports

import 'bootstrap/dist/css/bootstrap.css';
import 'bootstrap/dist/css/bootstrap-theme.css';

Import components

Import whatever components you need from react-bootstrap

import { Navbar, Button } from 'react-bootstrap';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment