Skip to content

Instantly share code, notes, and snippets.

View jsiebern's full-sized avatar

Jonathan jsiebern

View GitHub Profile
module Store = {
type action =
| Increase
| Decrease
| SetUsername(string);
type state = {
count: int,
username: string,
};
type storeBag = {