remachine icon indicating copy to clipboard operation
remachine copied to clipboard

[WIP] Reason pattern matching viz

Results 2 remachine issues
Sort by recently updated
recently updated
newest added

```reason let (state, send) = ReactUpdate.useReducer(Idle, (action, _state) => { [@remachine] switch (action) { | SetState(newState) => Update(newState) | Fetch(promise) => UpdateWithSideEffects( Loading, self => { let () = promise->Promise.get(result...