aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/footer.react.js
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2014-09-13 23:05:12 +0200
committerMaximilian Hils <git@maximilianhils.com>2014-09-13 23:05:12 +0200
commitd2475e6a146534b5e7aaf2cc7b0b9a75e418415e (patch)
tree47f2ce48a1c03d8ca6414d92a78c764e25a16e3f /web/src/js/footer.react.js
parent9bacb6d426a54882235b8d745dbf123c7958c887 (diff)
downloadmitmproxy-d2475e6a146534b5e7aaf2cc7b0b9a75e418415e.tar.gz
mitmproxy-d2475e6a146534b5e7aaf2cc7b0b9a75e418415e.tar.bz2
mitmproxy-d2475e6a146534b5e7aaf2cc7b0b9a75e418415e.zip
web: start gui
Diffstat (limited to 'web/src/js/footer.react.js')
-rw-r--r--web/src/js/footer.react.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/web/src/js/footer.react.js b/web/src/js/footer.react.js
new file mode 100644
index 00000000..96506e85
--- /dev/null
+++ b/web/src/js/footer.react.js
@@ -0,0 +1,12 @@
+/** @jsx React.DOM */
+
+var Footer = React.createClass({
+ render : function(){
+ var style = {
+ textAlign: "center"
+ };
+ return (<footer>
+ <span className="label label-success">transparent mode</span>
+ </footer>);
+ }
+}); \ No newline at end of file