Skip to content

Instantly share code, notes, and snippets.

@davidkpiano
Created May 27, 2020 12:54
Show Gist options
  • Save davidkpiano/0ee7595892b5e92c6813e55acf1e73f7 to your computer and use it in GitHub Desktop.
Save davidkpiano/0ee7595892b5e92c6813e55acf1e73f7 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: 'screen',
initial: 'inactive',
states: {
inactive: {
on: {
TURN_ON: 'active'
}
},
active: {
initial: 'bright',
states: {
bright: {
after: {
2000: 'dim'
}
},
dim: {
on: {
FOCUS: 'bright'
}
}
},
on: {
TURN_OFF: 'inactive'
}
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment