Skip to content

Instantly share code, notes, and snippets.

@chukinas
Last active May 7, 2020 21:46
Show Gist options
  • Save chukinas/aa8f80098ea13581ae423b3d67bc1802 to your computer and use it in GitHub Desktop.
Save chukinas/aa8f80098ea13581ae423b3d67bc1802 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const guards = {
isSelf: ()=>false,
}
const eventConflicts = Machine({
id: 'conflicts',
initial: 'first',
on: {
SUBMIT: 'third',
},
states: {
first: {
on: {
SUBMIT: {
target: 'second',
cond: 'isSelf',
},
},
},
second: {},
third: {},
},
},
{
guards,
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment