DEV Community

Avnish Jayaswal
Avnish Jayaswal

Posted on • Updated on

React bootstrap modal

Bootstrap Modal is a dialog box/popup window that is displayed some information to the user.

How to use React bootstrap modal

one need to install it at react app

How to install

npm install react-bootstrap bootstrap

how to import in React App and use

import "bootstrap/dist/css/bootstrap.min.css";
import { Modal , Button } from "react-bootstrap";
Enter fullscreen mode Exit fullscreen mode

one can get More on it (code example)

https://react-bootstrap.github.io/components/modal/

Source React bootstrap modal

Top comments (0)