Mount on #pitaya div, not body

Este commit está contenido en:
wpetit 2016-03-03 10:34:07 +01:00
padre 8f93f9f453
commit d514515d7f
Se han modificado 1 ficheros con 2 adiciones y 6 borrados

Ver fichero

@ -15,11 +15,7 @@ var App = React.createClass({
var view = editMode ? <EditView /> : <LauncherView />;
return (
<div id="pitaya">
{view}
</div>
);
return (<div>{view}</div>);
},
@ -40,5 +36,5 @@ ReactDOM.render(
<App />
</Provider>
,
document.body
document.getElementById('pitaya')
);