aboutsummaryrefslogtreecommitdiff
path: root/src/web/js/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/js/app.js')
-rw-r--r--src/web/js/app.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/web/js/app.js b/src/web/js/app.js
deleted file mode 100644
index 7837e6ae..00000000
--- a/src/web/js/app.js
+++ /dev/null
@@ -1,18 +0,0 @@
-/**
- * Copyright (c) 2014, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-var React = require('react');
-var ReactDOM = require('react-dom');
-
-var MainApp = require('./components/MainApp.react');
-
-ReactDOM.render(
- <MainApp />,
- document.getElementById('newspipeapp')
-);
bgstack15