diff -r 7634b424f426 -r 7e8cdc74d86f client/src/components/SessionSummary.js --- a/client/src/components/SessionSummary.js Thu Jun 22 10:47:10 2017 +0200 +++ b/client/src/components/SessionSummary.js Thu Jun 22 11:58:27 2017 +0200 @@ -7,18 +7,16 @@ class SessionSummary extends Component { render() { return ( - - - {this.props.notes.map((note) => - - - {note.startedAt} → {note.finishedAt} - {_.words(note.plain).length} words - - - )} - - + + {this.props.notes.map((note) => + + + {note.startedAt} → {note.finishedAt} + {_.words(note.plain).length} words + + + )} + ); } }