From 9ac90ba4bb85e2fab5cfc73ad9d6f3ec71c5b854 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Thu, 28 Jan 2016 11:44:20 +0100 Subject: restoring build command --- src/web/js/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/web/js/app.js') 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( , document.getElementById('jarrapp') ); -- cgit