reductive-dev-tools
reductive-dev-tools copied to clipboard
reductive and reason-react reducer component integration with Redux DevTools
I hava a store with nested reducers and nested action generators like this ```reason // Root action in root store type action = [ | `User(User_Store.action) | `Customer(Customer_Store.action) | `DevToolsUpdate('state)...
I have been following the [examples](https://github.com/reasonml-community/reductive/tree/master/examples) from `reductive`, in particular those with `thunk` middleware, and noticed that all actions are displayed with the name `update` in the dev-tools extension if...