Reputation: 31
I am getting Module not found: Can't resolve react-bootstrap
error while importing component FormControl.
import { ControlLabel,
FormControl,
HelpBlock,
Form,
Col,
FormGroup,
Checkbox } from 'react-bootstrap'
Upvotes: 1
Views: 14527
Reputation: 2441
You do not have this package installed. So, like Harish Soni said, running the following command
npm i react-bootstrap --save
alternatively if using yarn:
yarn add react-bootstrap
This will solve the issue.
Upvotes: 1