How to use deferred data incapsulated in the component?
I have simple component (not page, it is separate self-sufficient component) which can be used for both authenticated and anonymous users. Products loading for some time (actually it loads subscriptions, plans, etc) and makes entire page load time awful. I am following recommendation from documentation https://remix.run/docs/en/main/guides/streaming and basically just not works.
Remix defer doesn’t work in component, how to fix it?
I have simple component (not page, it is separate self-sufficient component) which can be used for both authenticated and anonymous users. Products loading for some time (actually it loads subscriptions, plans, etc) and makes entire page load time awful. I am following recommendation from documentation https://remix.run/docs/en/main/guides/streaming and basically just not works.