Mendes
Mendes

Reputation: 18561

How to use Bootstrap 4 with ReactJS + Webpack

I'm building my first ReactJS/Relay project with Bootstrap 4 and webpack.

It seens there are 2 ways to go using Bootstrap 4:

react-bootstrap4: As far as I understood you can get react components directly as ReactJS components (easy to use on JSX).

bootstrap-loader: The loader for Webpack.

I could not understand if I need to use one of them, both and the differences.

What is the way to go to use Boostrap 4 with ReactJS ?

Upvotes: 2

Views: 2485

Answers (1)

Ahmed Abdelrahman
Ahmed Abdelrahman

Reputation: 821

You can use Reactstrap, follow the documentation on the homepage it should be enough. Simply you create a react-app using the popularly used create-react-app which include webpack. For list of components check this Components page.

Upvotes: 1

Related Questions