Documentation and cleanup

This commit is contained in:
kibigo!
2017-07-14 11:13:02 -07:00
parent 21b04af524
commit d0aad1ac85
11 changed files with 705 additions and 189 deletions

View File

@@ -8,7 +8,7 @@ import PropTypes from 'prop-types';
// Our imports //
import StatusContainer from '../status/container';
import FollowNotification from './follow_notification';
import NotificationFollow from './follow';
export default class Notification extends ImmutablePureComponent {
@@ -20,8 +20,8 @@ export default class Notification extends ImmutablePureComponent {
renderFollow (notification) {
return (
<FollowNotification
notificationId={notification.get('id')}
<NotificationFollow
id={notification.get('id')}
account={notification.get('account')}
onDeleteNotification={this.props.onDeleteNotification}
/>