Leonid Fenko
Leonid Fenko
@timdorr Thanks for the fast reply! Indeed, I can do it right now, it's just a bit less convenient: ```javascript jsx // As opposed to FOO.BAR.path ``` The API is...
The same routes are also used for URL (or rather, URL path) building. It works like this: - `FIRST.SECOND.THIRD.buildUrl({})` => `/first/second/third` - `FIRST.$.SECOND.THIRD.buildRelativeUrl({})` => `second/third` For flexibility, `$` effectively cuts...
@brophdawg11 Thanks for such a detailed response! I'll try to look into it, but I know very little about the inner workings of React Router, so no promises there. Anyway,...
I think the issue is still relevant.
Hi! Unfortunately, the current version of the library is only compatible with v6, which significantly differs from v5. There is an old version that _is_ compatible with v5, but it's...
Closing as non-actionable
Hi, thanks! I wanted to ensure that the future route APIs wouldn't clash with someone's child routes. Using an uppercase letter also clearly indicates that it's a child route. I've...
V2 is released, route names can start with a lowercase letter now.
It's a pretty complex question. First of all, there are three kinds of types here: - Original types that are used to create route params (e.g. `"account" | "additional-info" |...
I realised that it's not immediately obvious: the only difference between original types and input/output route params types is that `undefined` is added or removed as necessary, which may or...