client/src/components/Note.js
changeset 15 4a8bbd314a46
parent 1 431977d7c9a6
child 16 e67cd18cc594
--- a/client/src/components/Note.js	Thu Jun 01 15:20:31 2017 +0200
+++ b/client/src/components/Note.js	Thu Jun 01 16:15:08 2017 +0200
@@ -4,7 +4,7 @@
 const Note = ({note}) => {
   return (
     <div id={"note-" + note.id}>
-      {note.text}
+      {note.plain}
     </div>
   );
 };