client/src/components/Note.js
changeset 18 dab2a16500e0
parent 17 877d8796b86d
child 33 238818343253
--- a/client/src/components/Note.js	Thu Jun 01 18:46:34 2017 +0200
+++ b/client/src/components/Note.js	Thu Jun 01 19:01:03 2017 +0200
@@ -3,8 +3,9 @@
 
 const Note = ({note}) => {
   return (
-    <div id={"note-" + note.id}>
-      <h5>{note.startedAt} ⇒ {note.finishedAt}</h5>
+    <div id={"note-" + note.id} className="note">
+      <span className="start">{note.startedAt}</span>
+      <span className="finish">{note.finishedAt}</span>
       <div dangerouslySetInnerHTML={{ __html: note.html }} />
     </div>
   );