diff options
author | François Schmidts <francois.schmidts@gmail.com> | 2016-01-28 11:44:20 +0100 |
---|---|---|
committer | François Schmidts <francois.schmidts@gmail.com> | 2016-01-28 11:44:20 +0100 |
commit | 9ac90ba4bb85e2fab5cfc73ad9d6f3ec71c5b854 (patch) | |
tree | f31a50459ca9021f1d7ca03f6c63ca95ec98c44d /src/web/js/app.js | |
parent | redoing UI and finishing up sidebar (diff) | |
download | newspipe-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.js | 3 |
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') ); |