client/src/components/Session.js
changeset 35 97106bacb24e
parent 34 6c920486de81
child 46 4aa24724e5b3
equal deleted inserted replaced
34:6c920486de81 35:97106bacb24e
    64 
    64 
    65   render() {
    65   render() {
    66     return (
    66     return (
    67       <div>
    67       <div>
    68         <Navbar history={this.props.history} />
    68         <Navbar history={this.props.history} />
    69         <Grid fluid>
    69         <div className="session-container">
    70           <Row>
    70           <Grid fluid className="session-notes">
    71             <Col md={3}>
       
    72               <Panel>
       
    73                 { this.renderForm() }
       
    74               </Panel>
       
    75             </Col>
       
    76             <Col md={9}>
       
    77               <NotesList notes={this.props.notes} />
       
    78             </Col>
       
    79           </Row>
       
    80         </Grid>
       
    81         <section className="editor-fixed">
       
    82           <Grid fluid>
       
    83             <Row>
    71             <Row>
    84               <Col md={9} mdOffset={3}>
    72               <Col md={3}>
    85                 <NoteInput session={this.props.currentSession} addNote={this.props.notesActions.addNote} />
    73                 <Panel>
       
    74                   { this.renderForm() }
       
    75                 </Panel>
       
    76               </Col>
       
    77               <Col md={9}>
       
    78                 <NotesList notes={this.props.notes} />
    86               </Col>
    79               </Col>
    87             </Row>
    80             </Row>
    88           </Grid>
    81           </Grid>
    89         </section>
    82           <section className="editor-fixed">
       
    83             <Grid fluid>
       
    84               <Row>
       
    85                 <Col md={9} mdOffset={3}>
       
    86                   <NoteInput session={this.props.currentSession} addNote={this.props.notesActions.addNote} />
       
    87                 </Col>
       
    88               </Row>
       
    89             </Grid>
       
    90           </section>
       
    91         </div>
    90       </div>
    92       </div>
    91     );
    93     );
    92   }
    94   }
    93 }
    95 }
    94 
    96