Alexey Taktarov
Alexey Taktarov
Hi @Grsz, it sounds like a nice feature to have! Adding a label to put it in a backlog, in the meantime feel free to open a pull-request. I suppose...
In wouter terms, `?category=1` isn't a valid path as it doesn't start with a slash so this isn't guaranteed to work properly. I see two workarounds here: 1. Provide the...
> This is the implementation I currently use in my project. (~160 bytes, unminified) I am afraid the actual route matching in wouter is a bit more complex. However, we...
Hey, good point. This is incorrect, can you file a PR?
Could you please share how you're implementing delayed transitions? Are you using Suspense?
Thanks for the suggestion. I am not familiar with Hono's components yet, could you maybe write your ideas on how this could be implemented?
Thanks, I'll think more about this, right now I don't see a straightforward solution. Maybe you can try importing wouter from a CDN (like esm.sh) with react dependency overriden? Similarly,...
Alright, I did some brief digging and it looks like the problem in this line https://github.com/molefrog/wouter/blob/fa5f6b1e8e66d7e5933f38b181cc15c5044b2bf9/packages/wouter/src/index.js#L183 wouter uses `createElement` to construct a provider element and passes `children` as a prop,...
I run a quick test and it worked, however there is another issue: Hono can't render components that return `null`.
Sure, here is what you can test (these are separate cases): 1. Create a Hono app with Client Components. Make a component that renders `null` and render it in your...