Hi, thanks for Helix, it's great! Wondering about suspense : it says on the React docs it doesn't support data fetched through effects or event handlers. Is there some hack to get around this?
Probably, but I'd note this part of documentation: > The requirements for implementing a Suspense-enabled data source are unstable and undocumented.
The issue I see with data fetching in an effect is that effects run after some component mounts and Suspense more or less expects a dynamic import of a component to happen before it stops showing the fallback element
so youd have to somehow tie the effect and the lazy loading component together; I dont see an easy way of doing this