Skip to content

Instantly share code, notes, and snippets.

@scherler
Created September 3, 2018 00:08
Show Gist options
  • Save scherler/d2b806aadf1011f407a8fa372df161b0 to your computer and use it in GitHub Desktop.
Save scherler/d2b806aadf1011f407a8fa372df161b0 to your computer and use it in GitHub Desktop.

Revisions

  1. scherler created this gist Sep 3, 2018.
    4 changes: 4 additions & 0 deletions SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,4 @@
    My Awesome Sketch
    First State
    some event -> Second State
    Second State
    6 changes: 6 additions & 0 deletions SketchSystems_prototype.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    function render(model){
    let current_state_name = model.active_states[0].name;
    return $("h1",
    {style: {color: "darkBlue"}},
    `The current state is: ${current_state_name}`);
    }