useQuery then server component possibility?
If I understand react server component correct, there is no way to render server component with props received from client component inside client component.
The case is:
The reason I have to fetch data inside a client component using
I think the only solution for me is to use lazy loading on the
Thanks in advance.
The case is:
The reason I have to fetch data inside a client component using
useMyQuery is that the state management of that data can be quite complex on client side. For example, I need to do a lot of optimistic updating and state syncing, stale controlling in multiple far-away components with it. This is the reason react-query lives I think.I think the only solution for me is to use lazy loading on the
HugeRenderer to make it progressive loaded?Thanks in advance.