Using Effect to Control Scopes
Can I achieve with effect something equivalent to https://frontside.com/effection/ There i can define a parent scope with
const scope = yield* useScope(); which can then be used to control the child scope with scope.run...?