https://github.com/richardzcode/bootstrap-4-required
https://github.com/richardzcode/bootstrap-4-required
bootstrap react reactjs
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/richardzcode/bootstrap-4-required
- Owner: richardzcode
- License: mit
- Created: 2018-08-06T17:13:00.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-06T20:47:05.000Z (almost 7 years ago)
- Last Synced: 2025-02-28T10:55:42.461Z (4 months ago)
- Topics: bootstrap, react, reactjs
- Language: JavaScript
- Size: 170 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bootstrap-4-required
Bundle together required JS/CSS files for Bootstrap 4. So no need to copy-paste links into your HTML file.
## Install
```
npm install --save bootstrap-4-required
```## Usage
```
import React, { Component } from 'react';
import 'bootstrap-4-required';class App extends Component {
render() {
return (
);
}
}export default App;
```