Last active
January 20, 2021 14:53
-
-
Save erikras/9813a82299d9f9e79273183225df1449 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 government = Machine({ | |
id: 'USA 🇺🇸', | |
initial: 'Trump', | |
states: { | |
Trump: { | |
on: { | |
INAUGURATION: 'Biden' | |
} | |
}, | |
Biden: { | |
final: true // only for a few years! | |
} | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment