equal
deleted
inserted
replaced
2 import PropTypes from 'prop-types'; |
2 import PropTypes from 'prop-types'; |
3 |
3 |
4 const Note = ({note}) => { |
4 const Note = ({note}) => { |
5 return ( |
5 return ( |
6 <div id={"note-" + note.id}> |
6 <div id={"note-" + note.id}> |
7 {note.startedAt} ⇒ {note.finishedAt} {note.plain} |
7 <h5>{note.startedAt} ⇒ {note.finishedAt}</h5> |
|
8 <div dangerouslySetInnerHTML={{ __html: note.html }} /> |
8 </div> |
9 </div> |
9 ); |
10 ); |
10 }; |
11 }; |
11 |
12 |
12 Note.propTypes = { |
13 Note.propTypes = { |