So I have a next.js
Page.js server component inside of which I'm using fetch API which has some params which i should be able to modify from the client component(on button click), however I'm not sure how to do that as Zustand documentation doesn't say anything about server components. I can't use their regular useStore hook(since hooks can't be used inside of server components).
const nonHookStore = useStore.getState().lang;
so it tried this, but this state isn't reactive(doesn't change on update from the client)
any other way to do this? (doesn't have to be Zustand, just the task)