client/src/components/Session.js
changeset 33 238818343253
parent 30 4d93f4ed95bc
child 34 6c920486de81
equal deleted inserted replaced
32:52f7a51ef948 33:238818343253
    73                 { this.renderForm() }
    73                 { this.renderForm() }
    74               </Panel>
    74               </Panel>
    75             </Col>
    75             </Col>
    76             <Col md={9}>
    76             <Col md={9}>
    77               <NotesList notes={this.props.notes} />
    77               <NotesList notes={this.props.notes} />
    78               <hr />
       
    79               <NoteInput session={this.props.currentSession} addNote={this.props.notesActions.addNote} />
       
    80             </Col>
    78             </Col>
    81           </Row>
    79           </Row>
    82         </Grid>
    80         </Grid>
       
    81         <section className="editor-fixed">
       
    82           <Grid fluid>
       
    83             <Row>
       
    84               <Col md={9} mdOffset={3}>
       
    85                 <NoteInput session={this.props.currentSession} addNote={this.props.notesActions.addNote} />
       
    86               </Col>
       
    87             </Row>
       
    88           </Grid>
       
    89         </section>
    83       </div>
    90       </div>
    84     );
    91     );
    85   }
    92   }
    86 }
    93 }
    87 
    94