Skip to content
Snippets Groups Projects
Commit 180344fc authored by Tomasz Knapik's avatar Tomasz Knapik Committed by Todd Dembrey
Browse files

Refactor note container

parent 32803392
No related merge requests found
import React from 'react';
import PropTypes from 'prop-types';
import moment from 'moment';
export default class NoteListingItem extends React.Component {
static propTypes = {
user: PropTypes.string.isRequired,
message: PropTypes.string.isRequired,
timestamp: PropTypes.instanceOf(moment).isRequired,
};
render() {
const { user, timestamp, message } = this.props;
return (
<div>
<div style={{fontWeight: 'bold'}}>{user} - {timestamp.format('ll')}</div>
<div>{message}</div>
</div>
);
}
}
......@@ -4,6 +4,7 @@ import PropTypes from 'prop-types';
import moment from 'moment';
import { getNoteOfID } from '@selectors/notes';
import NoteListingItem from '@components/NoteListingItem';
class Note extends React.Component {
static propTypes = {
......@@ -17,12 +18,11 @@ class Note extends React.Component {
render() {
const { note } = this.props;
return (
<div>
<div style={{fontWeight: 'bold'}}>{note.user} - {moment(note.timestamp).format('ll')}</div>
<div>{note.message}</div>
</div>
);
return <NoteListingItem
user={note.user}
message={note.message}
timestamp={moment(note.timestamp)}
/>;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment