Skip to content

Instantly share code, notes, and snippets.

@ShMcK
Created July 20, 2018 03:06
Show Gist options
  • Save ShMcK/8103c579fd903154bde9fed67d66a738 to your computer and use it in GitHub Desktop.
Save ShMcK/8103c579fd903154bde9fed67d66a738 to your computer and use it in GitHub Desktop.
stateless xstate
let currentState = 'Idle'
const nextState = alarmMachine
.transition(currentState, 'ALARM_TRIGGERED')
nextState.value // 'Ringing'
nextState.actions // ['ring']
nextState.events // ['SNOOZE', 'CANCEL']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment