Skip to content

Instantly share code, notes, and snippets.

@joystick
Last active August 15, 2020 13:08
Show Gist options
  • Save joystick/e5756eb9c0448b003cee5e5d231a8ecf to your computer and use it in GitHub Desktop.
Save joystick/e5756eb9c0448b003cee5e5d231a8ecf 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 fileListMachine = Machine({
id: 'fileList',
initial: 'displaying',
context: {
files: []
},
states: {
displaying: {
on: {
ADD_FILE: 'adding'
}
},
adding: {
on: {
ADD_FILE_OK: 'displaying'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment