React Bootstrap error: 'AccordionCollapseProps' is not exported from './AccordionCollapse'
There is an open issue in their github repo: https://github.com/react-bootstrap/react-bootstrap/issues/5267
One reported fix is to roll back to version 1.0.1.
npm install [email protected] --save
That worked for me.
After zxvaf's solution if the problem still continues you should also remove ^ character from react-bootstrap in package.json file. So it should be like this
"react-bootstrap": "1.0.1",