I need syntax help here in react js,
I wish to achieve something like this in the path
http://localhost:3000/verify-email?key=ffdffae0237c43e6572bca3a3867eda1&eid=c2Frc2hpN0BnbWFpbC5jb20=
The following code doesn't work
<Route name="businessInformation" exact path="/verify-email?key=:someRandomKey&eid=:someRandomKey"> //Need help here
Although, this works for http://localhost:3000/verify-email/:key/:eid
<Route name="businessInformation" exact path="/verify-email/key/eid">
How shall I append such string values so that it understands?