Skip to content

Instantly share code, notes, and snippets.

View arioston's full-sized avatar

Arioston arioston

View GitHub Profile
@arioston
arioston / machine.js
Created February 19, 2020 19:11
Generated by XState Viz: https://xstate.js.org/viz
const context = {
page: 0,
cards: []
};
const nextValid = (context, event) => {
return context.page + 1 < 3;
}
const previousValid = (context, event) => {