Aaron Wong
Results
3
comments of
Aaron Wong
trafficstars
There's an example here that might be useful: https://github.com/kriasoft/react-starter-kit/blob/master/docs/recipes/how-to-implement-routing.md#step-3-parameterized-routes ``` on('/products/:id', async (req) => { const data = await http.get(`/api/products/${req.params.id}`); return ; }); ```