With the release of Composable Architecture 1.0, what is the recommended way to fire off arbitrary code from a Reducer
?
In the old days this was handled with return Effect.fireAndForget{//code here}
I know TCA is moving away from Apple's Combine library, which was used to handle fireAndForget.
So what's the approved way now to return a block of arbitrary code that does not involve feeding further actions back into the reducer?
(Helpful if examples can be provided for async and non-async code.)