const [store1, setStore1] = createStore({a: 1, b: 2});const [store2, setStore2] = createStore();createEffect(() => { setStore1(store2);});createEffect(() => { setStore2(store1);});
const [value, setValue] = useSignal<number | undefined>();createEffect(() => { if (value() !== undefined) { // do something with value() then disable this effect }})