DEV Community

Discussion on: Should I use plain Bootstrap or React-bootstrap?

Collapse
 
itachiuchiha profile image
Itachi Uchiha • Edited

Actually, it doesn't matter. Because you've already installed bootstrap.

npm install react-bootstrap bootstrap

You have to import bootstrap's stylesheet files.

import 'bootstrap/dist/css/bootstrap.min.css';

So, if you have bootstrap's CSS, you can use both of them.

Just try this;

<div class="jumbotron">Test</div>

It will work.

If you use plain bootstrap, you will have to spend more time. React-bootstrap already doing whatever you want.