Skip to content

Commit d4ef756

Browse files
ambientlightzalmoxisus
authored andcommitted
Added reductive to integrations (#631)
1 parent dae9929 commit d4ef756

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

docs/Integrations.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Mostly functional:
99
- [Freezer](#freezer)
1010
- [Mobx](#mobx)
1111
- [PureScript](#purescript)
12+
- [Reductive](#reductive)
1213

1314
In progress:
1415
- [ClojureScript](#clojurescript)
@@ -217,3 +218,16 @@ var middleware: [StoreMiddleware] = [
217218
middleware.append(MonitorMiddleware.create(using: .defaultConfiguration))
218219
#endif
219220
```
221+
222+
### [Reductive](https://github.com/reasonml-community/reductive)
223+
#### [`reductive-dev-tools`](https://github.com/ambientlight/reductive-dev-tools)
224+
```reason
225+
let storeEnhancer =
226+
ReductiveDevTools.(
227+
Connectors.reductiveEnhancer(
228+
Extension.enhancerOptions(~name="MyApp", ()),
229+
)
230+
);
231+
232+
let storeCreator = storeEnhancer @@ Reductive.Store.create;
233+
```

0 commit comments

Comments
 (0)