How to add bootstrap to a React app
In this post we will give you information about How to add bootstrap to a React app. Hear we will give you detail about How to add bootstrap to a React appAnd how to use it also give you demo for it if it is necessary.
we are going to learn about how to add a bootstrap CSS library to react app.
Adding bootstrap to React
Open, your terminal and navigate to the react app folder
Run the following command in your terminal to install the bootstrap and its dependencies.
npm i bootstrap jquery popper.js
Open the react app in your favorite code editor.
Navigate to the index.js file and the below imports.
import React from "react";import ReactDOM from "react-dom";import 'bootstrap/dist/css/bootstrap.min.css';import 'bootstrap/dist/js/bootstrap.min.js';
Using the bootstrap
Now, we can use the bootstrap css classes inside our react components like this.
import React from "react";export default function App() { return ( <div className="App"> <div className="alert alert-primary" role="alert"> A simple primary alert—check it out! </div> <div className="alert alert-secondary" role="alert"> A simple secondary alert—check it out! </div> </div> );}
Hope this code and post will helped you for implement How to add bootstrap to a React app. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs