AG-420 Improve React implementation

This commit is contained in:
Sean Landsman
2017-05-23 11:43:35 +01:00
parent 5fbdb690af
commit 19771949cb
11 changed files with 537 additions and 457 deletions

View File

@@ -0,0 +1,8 @@
import {createStore} from "redux";
import fxData from "../reducers/fxData";
class StoreService {
}
StoreService.STORE = createStore(fxData);
export default StoreService;