So I am using the LinkContainer component from react-router-bootstrap to wrap my Nav.Link component from bootstrap. Please refer to the picture below for reference.
// Snippet
import {LinkContainer} from "react-router-bootstrap";
// Snippet
<LinkContainer to="/cart">
<Nav.Link class="navlink">
<FaShoppingCart /> Cart
</Nav.Link>
</LinkContainer>
// Snippet
But I am getting this error with my code: [Error Photo][1] [1]: https://i.stack.imgur.com/AF41y.png
By the way, I am using React v.17.0.2 and React-Router-Bootstrap v.0.25.0
I would like to ask if anyone can help or should I just change my version of my react-router-bootstrap or even use a react-router-component instead.
Thank you in advance.