Hi guys, How can I use nested Routes? lets say I have a /users route which has various subroutes. If I want to go to /users/:id/reservations/events/ how can I do it? as I understand I will have to add it with Router.add(route, page) however I think it will call again the server the new rendered page, but I dont want to call the server again if I am already in /users page.
Hi guys, How can I use nested Routes? lets say I have a
/users
route which has various subroutes. If I want to go to/users/:id/reservations/events/
how can I do it? as I understand I will have to add it with Router.add(route, page) however I think it will call again the server the new rendered page, but I dont want to call the server again if I am already in/users
page.Any Ideas?
thanks,
Ed