Skip to content

Instantly share code, notes, and snippets.

@kellyjandrews
Last active June 30, 2020 03:59
Show Gist options
  • Save kellyjandrews/bf9c3dd275206505c12bb0bb88df5d58 to your computer and use it in GitHub Desktop.
Save kellyjandrews/bf9c3dd275206505c12bb0bb88df5d58 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const video = Machine({
id: 'video',
initial: 'disconnected',
states: {
disconnected: {
id: 'disconnected',
initial: 'idle',
states: {
'idle': {},
'init': {},
'ready': {}
}
},
connected: {
type: 'parallel',
states: {
'session': {},
'subscribers': {},
'publisher': {}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment