Initial commit

This commit is contained in:
Nix1304
2020-04-02 02:14:23 +03:00
commit 36cff8be53
73 changed files with 19938 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import {createStore} from "redux";
import index from "./reducers";
import {composeWithDevTools} from "redux-devtools-extension";
const composeEnhancers = composeWithDevTools({
trace: true
});
export default createStore(index, composeEnhancers());