{
valtio.subscribe(moreState.obj, () =>
console.log("moreState.obj has changed to", moreState.obj)
);
moreState.obj.foo = "baz";
valtio.subscribe(moreState.arr, () =>
console.log("moreState.arr has changed to", moreState.arr)
);
moreState.arr.push("world");
}