Skip to content

Instantly share code, notes, and snippets.

@jaetask
Created July 28, 2020 11:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaetask/e706e95f4f7a9a7e03b6030033e18985 to your computer and use it in GitHub Desktop.
Save jaetask/e706e95f4f7a9a7e03b6030033e18985 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const powraSectionMachine = Machine({
id: 'powraSection',
initial: 'idle',
context: {
values: {}
},
states: {
idle: {
on: {
DISPLAY: 'editing'
}
},
editing: {
on: {
CANCEL: 'idle',
SAVE: 'completed'
}
},
completed: {
on: {
DISPLAY: 'editing'
}
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment