Created
February 12, 2020 09:39
-
-
Save ajaychandran/e765536da44d0f87996481b9589f24c6 to your computer and use it in GitHub Desktop.
Revisions
-
ajaychandran revised this gist
Feb 12, 2020 . No changes.There are no files selected for viewing
-
ajaychandran created this gist
Feb 12, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,39 @@ // Available variables: // - Machine // - interpret // - assign // - send // - sendParent // - spawn // - raise // - actions // - XState (all XState exports) const accountMachine = Machine( { id: 'account', initial: 'opened', context: { id: "1", bank: 0 }, states: { opened: { on: { BANK_CLOSED: { target: 'closed', actions: 'close' }, BANK_LOCKED: { target: 'locked', actions: 'lock' }, BANK_CREDITED: { actions: 'credit' } } }, locked: { on : { BANK_UNLOCKED: 'opened' } }, closed: { type: 'final' } } } );