equal
deleted
inserted
replaced
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 |