Replies: 1 comment
-
It's not precisely related to Valtio. let globalCounter = 0;
const Foo = () => {
const counter = ++globalCounter;
return <p>count: {counter}</p>;
}; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
A while back, someone said that Valtio, as it is, doesn't really work with SSR as the state between requests would get mixed up. Could someone clarify what is meant by that? Does it mean that user A could see the state requested by user B under certain circumstances?
For reference: (#14 (comment))
Beta Was this translation helpful? Give feedback.
All reactions