--- a/client/src/components/Note.js Thu Jun 01 16:15:08 2017 +0200
+++ b/client/src/components/Note.js Thu Jun 01 17:32:07 2017 +0200
@@ -4,7 +4,7 @@
const Note = ({note}) => {
return (
<div id={"note-" + note.id}>
- {note.plain}
+ {note.startedAt} ⇒ {note.finishedAt} {note.plain}
</div>
);
};