user1482689
user1482689

Reputation: 31

Module not found: Can't resolve 'react-bootstrap' issue

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

Answers (1)

dsncode
dsncode

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

Related Questions