Created
July 20, 2018 03:06
-
-
Save ShMcK/8103c579fd903154bde9fed67d66a738 to your computer and use it in GitHub Desktop.
stateless xstate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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