summaryrefslogtreecommitdiffstats
path: root/webapp/stores/redux_store.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-09-06 23:04:13 -0700
committerChristopher Speller <crspeller@gmail.com>2017-09-06 23:11:58 -0700
commitd8bd57901e33a7057e26e782e295099ffcc0da89 (patch)
treee12dfc8cad42b1576756d19d7fbfd82646a009bf /webapp/stores/redux_store.jsx
parent7bc8e9a08dfde56387f946fdf5086252aa4d0491 (diff)
downloadchat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.gz
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.bz2
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.zip
Removing webapp
Diffstat (limited to 'webapp/stores/redux_store.jsx')
-rw-r--r--webapp/stores/redux_store.jsx19
1 files changed, 0 insertions, 19 deletions
diff --git a/webapp/stores/redux_store.jsx b/webapp/stores/redux_store.jsx
deleted file mode 100644
index de5099d27..000000000
--- a/webapp/stores/redux_store.jsx
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-// This is a temporary store while we are transitioning from Flux to Redux. This file exports
-// the configured Redux store for use by actions and selectors.
-
-import configureStore from 'store';
-const store = configureStore();
-
-export function bindActionToRedux(action, ...args) {
- return async () => {
- await action(...args)(store.dispatch, store.getState);
- };
-}
-
-window.store = store;
-
-export default store;
-