I am a bit new to the world of ReactJS but I have been coding in Javascript for a while now. Loving what ReactJS is doing as I was coding in pure JS before using Design Patterns and OOP I consider this a HUGE upgrade for me.
I have followed several tutorials and read A LOT about React, so I ended up starting my first App using kriasoft/react-starter-kit
in order to boost my productivity, also I find it good that I can have some guideline on how is the "right" way of writing react.
I have stuck while trying to integrate React-Bootstrap into the existing Starter-kit from kriasoft.
I can import different components from React-Bootstrap (such us Buttons etc.) by simply
import Button from '../../../node_modules/react-bootstrap';
in a component of my own, my problem is that I have no css on those React- Bootstrap components.
I have already gone through the React-Bootstrap getting started guide, but I was not so bright to figure out what I am doing wrong.
I have installed react-bootstrap
using
$ npm install react-bootstrap --save
but I am not sure where I should include the latest compiled and minified CSS from bootstrap
<link rel="stylesheet" href="maxcdn....blahblah....bootstrap.min.css">
.
Would be great if someone could help me setting this up by providing a guide or some intuition.