Skip to content

Instantly share code, notes, and snippets.

View desmond-dsouza's full-sized avatar

desmond-dsouza

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