From 370d51244922ba6634831a406e268a6537053a3d Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Wed, 27 Jan 2016 12:36:35 +0100 Subject: bumping react and removing react-bootstrap listgroup which are not working wit last react version --- src/web/js/components/MainApp.react.js | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'src/web/js/components/MainApp.react.js') diff --git a/src/web/js/components/MainApp.react.js b/src/web/js/components/MainApp.react.js index bd643be1..816e8c82 100644 --- a/src/web/js/components/MainApp.react.js +++ b/src/web/js/components/MainApp.react.js @@ -1,6 +1,6 @@ var React = require('react'); -var Col = require('react-bootstrap/lib/Col'); -var Grid = require('react-bootstrap/lib/Grid'); +var Col = require('react-bootstrap/Col'); +var Row = require('react-bootstrap/Row'); var Menu = require('./Menu.react'); var MiddlePanel = require('./MiddlePanel.react'); @@ -9,11 +9,8 @@ var RightPanel = require('./RightPanel.react'); var MainApp = React.createClass({ render: function() { - return ( - - - - + return ( + @@ -22,7 +19,7 @@ var MainApp = React.createClass({ - + ); }, }); -- cgit