bootstrap-4-required
Version:
Bootstrap 4 required JS/CSS files
29 lines (21 loc) • 566 B
Markdown
Bundle together required JS/CSS files for Bootstrap 4. So no need to copy-paste links into your HTML file.
```
npm install --save bootstrap-4-required
```
```
import React, { Component } from 'react';
import 'bootstrap-4-required';
class App extends Component {
render() {
return (
<div className="alert alert-primary" role="alert">
A simple primary alert with <a href="#" className="alert-link">an example link</a>. Give it a click if you like.
</div>
);
}
}
export default App;
```