Created
December 17, 2020 17:46
-
-
Save darrenbutcher/d595273e3c5495f1558e320ad6ab45c5 to your computer and use it in GitHub Desktop.
Revisions
-
darrenbutcher created this gist
Dec 17, 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,22 @@ const machine = Machine({ "id": "2. BYO", "initial": "Black Panel", "states": { "Black Panel": { "on": { "EXPAND": "Black Panel Expanded", "OPEN": "Pricing Modal" } }, "Pricing Modal": { "on": { "CLOSE": "Black Panel" } }, "Black Panel Expanded": { "on": { "COLLAPSE": "Black Panel" } } } }, {});