-
Hello, I still don't understand when to use
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 17 replies
-
The difficulty comes with // don't do this
useEffect(() => {
...
}, [snap])
// instead, do this
const primitiveValue = snap.primitiveValue
useEffect(() => {
...
}, [primitiveValue]) |
Beta Was this translation helpful? Give feedback.
-
When I use class, why does this have a proxy object and a class object? |
Beta Was this translation helpful? Give feedback.
When I use class, why does this have a proxy object and a class object?