Add flux support including generators

This commit is contained in:
Justin Niessner
2015-03-25 22:42:02 -04:00
parent 3a94fb3fe6
commit 3cf4d739e3
10 changed files with 105 additions and 8 deletions
+8
View File
@@ -0,0 +1,8 @@
'use strict';
var <% classedName + 'ActionCreators' %> = {
}
<% if (es6) { %> export default <%= classedName + 'ActionCreators' %>; <% }
else { %>module.exports = <%= classedName + 'ActionCreators' %>; <% } %>