I want to set navigate to a different route when below link clicked.
<Link to={'/q/${item.qID}'} style={{ textDecoration: 'none' }}>{item.qContent}</Link>
The real result is
http://localhost:3000/q/$%7Bitem.qID%7D
Expected results is
http://localhost:3000/q/122
(122 = item.qID)