client/src/components/NotesList.js
changeset 18 dab2a16500e0
parent 12 48ddaa42b810
child 19 f1b125b95fe9
--- a/client/src/components/NotesList.js	Thu Jun 01 18:46:34 2017 +0200
+++ b/client/src/components/NotesList.js	Thu Jun 01 19:01:03 2017 +0200
@@ -16,11 +16,11 @@
   }
 
   return (
-    <ListGroup>
+    <div>
       {notes.map((note) =>
-        <ListGroupItem key={note.id}><Note note={note} /></ListGroupItem>
+        <Note note={note} />
       )}
-    </ListGroup>
+    </div>
   );
 };