Let say we have this URL: http://localhost:3002?category=big+car
With last version of Hyper-router:
Then when catching location.query[:category] we got the result: big+car
With the old version of Reactrb-router:
Then when catching location.query[:category] we got the result: big car
Don't know which one is the good standard.
Let say we have this URL:
http://localhost:3002?category=big+carWith last version of Hyper-router:
Then when catching
location.query[:category]we got the result:big+carWith the old version of Reactrb-router:
Then when catching
location.query[:category]we got the result:big carDon't know which one is the good standard.