Changed to use basicDispatcher in Store.

This commit is contained in:
Giedrius Grabauskas
2015-11-25 03:08:28 +02:00
parent 3201084d33
commit 06911fd64b
+1 -2
View File
@@ -107,8 +107,7 @@ class CounterStore extends FluxUtils.ReduceStore<number> {
}
}
var Disaptcher: any;
const Store = new CounterStore(Disaptcher);
const Store = new CounterStore(basicDispatcher);
// Sample Flux container with CounterStore
class CounterContainer extends Component<any, any> {