Combining Stateful and Service-Related Actions in Effect Typescript Services
Services: are they meant more-so for just service-related actions, or can they also store state? I know that having Refs as services is a way to share state, but if I wanted to combine the two, e.g have something like this:
Then it seems I'm not able to actually call Effect.provideService, since the Ref wants provideServiceEffect, and so that makes me think maybe this use case is not something I should actually strive for.