How to pass data from server component down to a client component?
Unanswered
Transvaal lion posted this in #help-forum
Transvaal lionOP
As the title suggests I want pass data from server component down to a client component, when the user clicks a certain field in the frontend, I want to get some data from the server and then display this in another client component without refreshing the page. Is this possible?
1 Reply
Giant panda
You just do client-side fetching when the user interacts with the element in most cases. If it's something like filtering options you might consider sending the client-side state to the server and have the page rerun to fetch data filtered by the user's selection.