Shu Ding
Shu Ding
I think we can already do it with today's setup, it's just that we need to design multiple cards (it's not dynamic). The real tricky thing is when you share...
Yep this makes sense, feel free to open a PR for it!
#193 should address this.
According to what @TahaBoulehmi mentioned above, could you update Next.js in your reproduction and verify if it's still happening? Thanks! > I used to have the same issue but not...
For https://codesandbox.io/p/sandbox/next-51030-hlj722?file=%2Fapp%2Fpage.tsx%3A1%2C1, it becomes very tricky if your CSS code itself has conflicts and some behaviors are undefined. For example when a dynamic component has loaded, its CSS might cause...
Thanks! I'll go through all the reproductions and think about an improvement in the next couple of days! I understand that the confusion caused by the new architecture. In general...
This issue was fixed in newer versions, let us know if it's still happening.
I might try a custom build of Resvg.js as its latest WASM build is 1.1MB larger than old versions. My guess is that it includes font loading / WASI related...
Yes this is something related to `Suspense` and `render()`. Thanks for reporting!
`useUIState` is a [Client Component API](https://react.dev/reference/rsc/use-client), which means that you have to use it in a Client Component (with `"use client"` directive on top): ```js "use client" import { useUIState...