Jimmy Jia
Jimmy Jia
I'm sorry you had to spend so much time on this. Why do you need to trigger the redirect rather than just creating the `MemoryProtocol` with the path you want?
@hisapy Do you want to PR to Farce and make `keyPrefix` specifiable as an option? https://github.com/4Catalyzer/farce/blob/d3e6e0cdd6a6ee43b7acc8d8b67ed00cefc76ce1/src/MemoryProtocol.js#L9-L27
For (2) above, I think it should be possible to define a dummy context provider that just gives `` the bare minimum needed to render.
Well, in most cases, if you're not actually exercising the navigation logic, you really just need to provide the URL, plus `createHref`/`createLocation` methods for links.
This was a breaking change that was added in v0.4.0 in https://github.com/4Catalyzer/found/pull/217. The idea is that, without this behavior, it was impossible to make `/foo` _not_ match. It was possible...
To be clear, `makeRouteConfig` does _not_ add this automatically. If you're using JSX, you need to go from: ```js ``` to ```js ``` Assuming we're talking about the same thing...
This library actually uses Redux internally for state management. That said, I'm curious why the Redux dependency matters. It's a dependency rather than a peer dependency, so if your project...
@ignatevdev Do you know if there's a good pattern for libraries that don't use Redux to integrate nicely with Redux? We have a few places where we have middleware that...
We could potentially drop React-Redux, as we're barely using it... but I'm not really sure it'd get us much to do that. Bundlephobia says it's only 2 kB minified +...
I think we partly could... the issue is that Found and Farce also use store enhancers, though. I'm really on the fence here. I think there are people who use...