Can URL params be matched to a specific route?
I would like something like
export const ManageAccountLocation = new Location('/auth/action')
export const ManageAccountLocationLink = new Location('/auth/action?mode=:mode', {mode: str.required()})
for the below link to generate a unique route separate from /auth/action
http://127.0.0.1:8080/auth/action?mode=resetPassword
Can URL params be matched to a specific route?
I would like something like
export const ManageAccountLocation = new Location('/auth/action')export const ManageAccountLocationLink = new Location('/auth/action?mode=:mode', {mode: str.required()})for the below link to generate a unique route separate from
/auth/actionhttp://127.0.0.1:8080/auth/action?mode=resetPassword