Registers a side effect that runs immediately and re-runs whenever any state accessed within it changes.
The function to execute.
const name = state("World");effect(() => { document.body.innerText = `Hello ${name.value}`;}); Copy
const name = state("World");effect(() => { document.body.innerText = `Hello ${name.value}`;});
Registers a side effect that runs immediately and re-runs whenever any state accessed within it changes.