react tabs component using bootstrap 4
npm install react-bootstrap-tabsThis is a react component to render tabs using Bootstrap 4 classes.
You should have Bootstrap 4 installed already in your app.
- Demo Site
- Demo project source
All of the features are demonstrated on the demo site so please see the source file:
https://github.com/freeranger/react-bootstrap-tabs-demo/blob/master/app/App.js
for examples of how to use it in your own applications.
1. install the package:
```
npm install react-bootstrap-tabs --save
With ES2015:
``
import {Tabs, Tab} from 'react-bootstrap-tabs';
`html`
1. Clone this repo
2. Inside cloned repo run npm installnpm test
3. If you want to run tests: or npm run testonly or npm run test-watch. Write tests in the tests folder. You need at least Node 4 on your machine to run tests.npm test
4. If you want to run linting: or npm run lint. Fix bugs: npm run lint-fix. You can adjust your .eslintrc config file.dist
5. If you want to run transpilation to ES5 in folder: npm run prepublish` (standard npm hook).
MIT