aboutsummaryrefslogtreecommitdiff
path: root/src/web/js/app.js
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2016-01-28 11:44:20 +0100
committerFrançois Schmidts <francois.schmidts@gmail.com>2016-01-28 11:44:20 +0100
commit9ac90ba4bb85e2fab5cfc73ad9d6f3ec71c5b854 (patch)
treef31a50459ca9021f1d7ca03f6c63ca95ec98c44d /src/web/js/app.js
parentredoing UI and finishing up sidebar (diff)
downloadnewspipe-9ac90ba4bb85e2fab5cfc73ad9d6f3ec71c5b854.tar.gz
newspipe-9ac90ba4bb85e2fab5cfc73ad9d6f3ec71c5b854.tar.bz2
newspipe-9ac90ba4bb85e2fab5cfc73ad9d6f3ec71c5b854.zip
restoring build command
Diffstat (limited to 'src/web/js/app.js')
-rw-r--r--src/web/js/app.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/web/js/app.js b/src/web/js/app.js
index 603172b3..00156670 100644
--- a/src/web/js/app.js
+++ b/src/web/js/app.js
@@ -8,10 +8,11 @@
*/
var React = require('react');
+var ReactDOM = require('react-dom');
var MainApp = require('./components/MainApp.react');
-React.render(
+ReactDOM.render(
<MainApp />,
document.getElementById('jarrapp')
);
bgstack15