Server component state management?
Would there be a way to get the benefits of the server components while using a state management library?
4 Replies
with server components you don't manage the state on client
if you try something like useState on a server component you will receive an error
Indeed but still
I don't want to send a request to the server every time a click affects the entire page
then create a client component
Oh yeah I can do that
I'll try tomorrow and update you!