Last active
November 6, 2019 15:28
-
-
Save matbee-eth/a32549cf0b4b7b967804715995e56ef4 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains 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
const initialState = { | |
id: 'toggle', | |
initial: 'idle', | |
context: { | |
msg: '' | |
}, | |
states: { | |
idle: { | |
on: { | |
DONE_AVAILABLE: "granted", | |
DONE_REQUEST: "request", | |
FAIL: "fail" | |
} | |
}, | |
granted: { | |
type: 'final' | |
}, | |
request: { | |
on: { | |
DONE_AVAILABLE: "granted", | |
FAIL: "fail" | |
} | |
}, | |
fail: { | |
type: 'final' | |
} | |
} | |
} | |
Machine(initialState) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment