aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/router_jsx.js
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2014-09-13 17:00:05 +0200
committerMaximilian Hils <git@maximilianhils.com>2014-09-13 17:00:05 +0200
commit9bacb6d426a54882235b8d745dbf123c7958c887 (patch)
tree7e7f27f3775e66fabab4ddc1f6b3c84a53178e85 /web/src/js/router_jsx.js
parentb59234e25db8418cd53795ce94dda943e54f8ac1 (diff)
downloadmitmproxy-9bacb6d426a54882235b8d745dbf123c7958c887.tar.gz
mitmproxy-9bacb6d426a54882235b8d745dbf123c7958c887.tar.bz2
mitmproxy-9bacb6d426a54882235b8d745dbf123c7958c887.zip
gulpfile
Diffstat (limited to 'web/src/js/router_jsx.js')
-rw-r--r--web/src/js/router_jsx.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/web/src/js/router_jsx.js b/web/src/js/router_jsx.js
deleted file mode 100644
index 707715de..00000000
--- a/web/src/js/router_jsx.js
+++ /dev/null
@@ -1,10 +0,0 @@
-/** @jsx React.DOM */
-
-var Router = React.createClass({displayName: 'Router',
- render: function(){
- return ReactRouter.Routes({location: "hash"},
- ReactRouter.Route({name: "certs", path: "/", handler: CertInstallView}),
- ReactRouter.Route({name: "other", path: "/other", handler: CertInstallView})
- );
- }
-});