diff -r 56850f5c73f6 -r cfcbf4bc66f1 client/src/components/SessionForm.js --- a/client/src/components/SessionForm.js Wed Jul 18 17:32:09 2018 +0200 +++ b/client/src/components/SessionForm.js Tue Aug 14 20:34:50 2018 +0200 @@ -1,7 +1,7 @@ import React, { Component } from 'react'; import { connect } from 'react-redux'; import { bindActionCreators } from 'redux'; -import { Panel, FormGroup, ControlLabel, FormControl, Collapse } from 'react-bootstrap'; +import { Collapse } from 'react-bootstrap'; import '../App.css'; import * as sessionsActions from '../actions/sessionsActions'; import * as authActions from '../actions/authActions'; @@ -55,40 +55,42 @@ } return ( - -
{ e.preventDefault() } }> - - Title - - - - Description - - - - Group -

{this.props.currentSession.group}

-
- - Protocol {this.state.protocolOpen?:} - -
{JSON.stringify(this.props.currentSession.protocol, null, 2)}
-
-
-
-
+
+
+
{ e.preventDefault() } }> +
+ + +
+
+ + +
+
+ +

{this.props.currentSession.group}

+
+
+ + +
{JSON.stringify(this.props.currentSession.protocol, null, 2)}
+
+
+
+
+
); } }