Skip to content

Instantly share code, notes, and snippets.

@goatslacker
Created March 24, 2015 18:03
Show Gist options
  • Save goatslacker/f1273cf3ae409c882891 to your computer and use it in GitHub Desktop.
Save goatslacker/f1273cf3ae409c882891 to your computer and use it in GitHub Desktop.
class FooActions {
action1() { }
action2() { }
action3() { }
mainAction() {
this.actions.action1();
this.actions.action2();
this.actions.action3();
this.dispatch();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment