I'm looking up documentation on React-Bootstrap this morning and I noticed there's an addition in the npm install command.
It is now:
npm install react-bootstrap@next bootstrap@5.0.2
Before, the documentation didn't mention the "@next part" nor the "@5.0.2". Then, in my main index.js file, I still imported the following at the top:
import 'bootstrap/dist/css/bootstrap.min.css';
It works the same. I am a big fan of the accordian component from bootstrap. So to use that, I just need to import t...
Continue reading ...