Link param doesn't render in JSX (react)

250 Views Asked by At
<Link to={{pathname:'/profile',query: {id: {user.id}}}>View </Link>

I want to render a link that go to a path, but in my dom I see profile/user?user.id

Early on I tried something more simple

<Link to="/profile/{user.id}">View </Link> it doesn't work too.
1

There are 1 best solutions below

0
On BEST ANSWER
<Link to={"/profile/" + user.id}>View </Link>

This is what you're looking for