Skip to content

Instantly share code, notes, and snippets.

@tomByrer
Last active September 5, 2020 11:47
Generated by XState Viz: https://xstate.js.org/viz
const fetchMachine = Machine(
{
id: 'checkbox',
initial: 'down',
context: {
retries: 0
},
states: {
down: {
on: {
FLIP: {
actions: "myAction",
target: "up"
},
}
},
up: {
on: {
FLIP: 'down'
}
},
}
},
{
actions: {
myAction: () => {
console.log("myAction");
}
}
},
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment