add bootstrap to gatsbyjs code example
Example 1: add bootstrap to gatsby
npm install --save react-bootstrap
npm install --save bootstrap
Example 2: add bootstrap to gatsby
import React from 'react';
import '../path_to/bootstrap.min.css';
const MyComponent = () => (
<div>
<p>This contains a button which uses the bootstrap.css</p>
<button class="btn btn-primary">Click me</button>
</div>
);
Example 3: install bootstrap in gatsbyjs
import "bootstrap/dist/css/bootstrap.min.css";
import "jquery/dist/jquery.min.js";
import "popper.js/dist/popper.min";
import "bootstrap/dist/js/bootstrap.min.js";
Example 4: add bootstrap to gatsby
import React from 'react';
import { Button } from 'react-bootstrap';
const MyComponent = () => (
<div>
<p>This contains a button which is exported by react-bootstrap</p>
<Button variant="primary">Primary</Button>
</div>
);