Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/richardzcode/bootstrap-4-required
https://github.com/richardzcode/bootstrap-4-required
bootstrap react reactjs
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/richardzcode/bootstrap-4-required
- Owner: richardzcode
- License: mit
- Created: 2018-08-06T17:13:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-06T20:47:05.000Z (over 6 years ago)
- Last Synced: 2024-11-11T21:47:51.897Z (about 2 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;
```