Skip to content

Instantly share code, notes, and snippets.

@DaveHudson
Last active June 14, 2021 08:49
Show Gist options
  • Save DaveHudson/c3656806bb752f8dac0bbc765f59bd61 to your computer and use it in GitHub Desktop.
Save DaveHudson/c3656806bb752f8dac0bbc765f59bd61 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const demoChat = Machine({
id: 'demo',
initial: 'idle',
context: {},
states: {
idle: {
on: {
DEMO: 'patient1'
}
},
patient1: {
on: {
RESOLVE: 'os1',
REJECT: 'failure'
}
},
os1: {
on: {
RESOLVE: 'specialist1',
REJECT: 'failure'
}
},
specialist1: {
on: {
RESOLVE: 'success',
REJECT: 'failure'
}
},
success: {
type: 'final'
},
failure: {}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment