Skip to content

Instantly share code, notes, and snippets.

@AndresRodH
Last active November 28, 2020 15:42
Show Gist options
  • Save AndresRodH/193168562f73b5fd0aa6122ef08e801f to your computer and use it in GitHub Desktop.
Save AndresRodH/193168562f73b5fd0aa6122ef08e801f to your computer and use it in GitHub Desktop.
Example 1
const doTheThingMachine = Machine({
id: 'do-the-thing',
initial: 'validating',
states: {
validating: {},
handlingThings: {},
success: {
type: 'final',
},
failure: {
type: 'final',
},
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment