Hi all,
I usually work with Angular but got a new project that needs to be done on React and Bootstrap. So, what should I use? Plain Bootstrap or React-bootstrap? Plain one doesn't cause a problem in Angular, I was wondering if it is the same case in React?
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (5)
I'm not an expert, but one thing to note is using react-bootstrap means you don't use the jQuery or the built-in Javascript that bootstrap comes with, saving you from an additional dependency if you aren't using jQuery.
So, how do react-bootstrap handle animations done with jQuery?
Actually, it doesn't matter. Because you've already installed bootstrap.
You have to import bootstrap's stylesheet files.
So, if you have bootstrap's CSS, you can use both of them.
Just try this;
It will work.
If you use plain bootstrap, you will have to spend more time. React-bootstrap already doing whatever you want.
Are you interested in stable and fast results or in long term benefits, such as replaceable front end (since you already switched from Angular to React this might happen in the future again) and deeper understanding or customization of Bootstrap?
I am more interested in stable results.