client/src/components/Note.js
author Alexandre Segura <mex.zktk@gmail.com>
Tue, 23 May 2017 16:58:15 +0200
changeset 6 540161f63238
parent 1 431977d7c9a6
child 15 4a8bbd314a46
permissions -rw-r--r--
Remove CSS files from version control.

import React from 'react';
import PropTypes from 'prop-types';

const Note = ({note}) => {
  return (
    <div id={"note-" + note.id}>
      {note.text}
    </div>
  );
};

Note.propTypes = {
  note: PropTypes.object.isRequired
};

export default Note;