Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 (


A simple primary alert with an example link. Give it a click if you like.

);
}
}

export default App;
```