aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/js/app.js')
-rw-r--r--web/src/js/app.js16
1 files changed, 12 insertions, 4 deletions
diff --git a/web/src/js/app.js b/web/src/js/app.js
index e21fa499..30897686 100644
--- a/web/src/js/app.js
+++ b/web/src/js/app.js
@@ -1,9 +1,15 @@
import React from "react"
-import { render } from 'react-dom'
+import {render} from 'react-dom'
+import {createStore} from 'redux'
+import {Provider} from 'react-redux'
+import mitmproxyApp from './reducers'
+
import $ from "jquery"
import Connection from "./connection"
-import {app} from "./components/proxyapp.js"
-import { EventLogActions } from "./actions.js"
+import {App} from "./components/proxyapp.js"
+import {EventLogActions} from "./actions.js"
+
+let store = createStore(mitmproxyApp);
$(function () {
window.ws = new Connection("/updates");
@@ -12,6 +18,8 @@ $(function () {
EventLogActions.add_event(msg);
};
- render(app, document.getElementById("mitmproxy"));
+ render(
+ <Provider store={store}>{App}</Provider>,
+ document.getElementById("mitmproxy"));
});