File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11var alt = require ( './alt' ) ;
22
3- class Actions {
3+ class FetchActions {
44 fetch ( route , data ) {
55 this . dispatch ( { route, data} ) ;
66 }
@@ -23,4 +23,4 @@ class Actions {
2323}
2424
2525
26- module . exports = alt . createActions ( Actions ) ;
26+ module . exports = alt . createActions ( FetchActions , "FetchActions" ) ;
Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ class Actions {
77 }
88}
99
10- module . exports = alt . createActions ( Actions ) ;
10+ module . exports = alt . createActions ( Actions , "Actions" ) ;
Original file line number Diff line number Diff line change @@ -52,4 +52,4 @@ class RouterStore {
5252}
5353
5454
55- module . exports = alt . createStore ( RouterStore ) ;
55+ module . exports = alt . createStore ( RouterStore , "RouterStore" ) ;
You can’t perform that action at this time.
0 commit comments