client/src/components/Note.js
author ymh <ymh.work@gmail.com>
Wed, 31 May 2017 18:08:22 +0200
changeset 8 6f572b6b6be3
parent 1 431977d7c9a6
child 15 4a8bbd314a46
permissions -rw-r--r--
try to make tests work again

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;