Skip to content

Instantly share code, notes, and snippets.

@sebjwallace
Last active November 5, 2019 21:03
Show Gist options
  • Save sebjwallace/8228d6ca8a589fed081cdf05c24ce9a9 to your computer and use it in GitHub Desktop.
Save sebjwallace/8228d6ca8a589fed081cdf05c24ce9a9 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: 'switch',
initial: 'off',
states: {
off: {
on: {
FLIP: 'on'
}
},
on: {
on: {
FLIP: 'off'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment