client/src/components/NotesList.js
author ymh <ymh.work@gmail.com>
Mon, 22 May 2017 17:59:19 +0200
changeset 2 b52921a63e77
parent 1 431977d7c9a6
child 12 48ddaa42b810
permissions -rw-r--r--
add scss + bootstrap

import React from 'react';

import PropTypes from 'prop-types';
import Immutable from 'immutable';

import { ListGroup, ListGroupItem} from 'react-bootstrap';

import Note from './Note';

const NotesList = ({notes}) => {
  return (
    <ListGroup>
      {notes.map((note) => 
        <ListGroupItem key={note.id}><Note note={note} /></ListGroupItem>
      )}
    </ListGroup>
  );
};

NotesList.propTypes = {
  notes: PropTypes.instanceOf(Immutable.List).isRequired
};

export default NotesList;