--- 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>
);
};