Skip to content

Instantly share code, notes, and snippets.

module Store = {
type actions =
| Increase
| Decrease;
type state = {count: int};
type store = {
state,
dispatch: actions => unit
};
let component = ReasonReact.reducerComponent("Store");