Question: How can I pass a prop or a single value, like a name, through React-Router's Link component, and catch it at the endpoint?
This is what I mean: Let's say we are on page /a. The Link will take the user to /b. As such . Now, I need to pass the name through the Link, from /a, to /b.
How can I pass multiple data from one component to another through the link in react routing?