Skip to content

Commit

Permalink
Added reductive to integrations (#631)
Browse files Browse the repository at this point in the history
  • Loading branch information
ambientlight authored and zalmoxisus committed Jan 18, 2019
1 parent dae9929 commit d4ef756
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/Integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Mostly functional:
- [Freezer](#freezer)
- [Mobx](#mobx)
- [PureScript](#purescript)
- [Reductive](#reductive)

In progress:
- [ClojureScript](#clojurescript)
Expand Down Expand Up @@ -217,3 +218,16 @@ var middleware: [StoreMiddleware] = [
middleware.append(MonitorMiddleware.create(using: .defaultConfiguration))
#endif
```

### [Reductive](https://github.com/reasonml-community/reductive)
#### [`reductive-dev-tools`](https://github.com/ambientlight/reductive-dev-tools)
```reason
let storeEnhancer =
ReductiveDevTools.(
Connectors.reductiveEnhancer(
Extension.enhancerOptions(~name="MyApp", ()),
)
);
let storeCreator = storeEnhancer @@ Reductive.Store.create;
```

0 comments on commit d4ef756

Please sign in to comment.