I'd like to have routes set like this:
Base Route: /events/:date
A click event redirects to /events, then the routes file would have to fallback to /events/moment().format('YYYY-MM-DD') to render EventsComponent.
Inside EventsComponent you have an action to change date, which navigates according to the day you selected, in this case the routes file wouldn't need to fallback, since the :date is defined.
I just don't know how to apply it to my needs.
Thanks