All files / src/containers/Notification model.js

0% Statements 0/21
0% Branches 0/25
0% Functions 0/6
0% Lines 0/3
1 2 3 4 5 6 7 8 9 10                   
import Immutable from 'immutable';
 
const NotificationRecord = Immutable.Record({
  blurb: undefined,
  moment: undefined,
  getNotificationViewNode: undefined,
});
 
export default class Notification extends NotificationRecord { }