#Is there a separate effect method for respective signals? like in react, we can pass a variable
1 messages · Page 1 of 1 (latest)
effect will be invoked when one of the signals in its scope are updated.
not every signal.
if you need to unscope some signals you can do that with untracked
effect(() => {
const myVal = untracked(() => mySignal()) // not tracked
const newVal = myVal + mySignal2() // tracked
})