React = require 'react' NotificationStore = require './notifications-store' class Notifications extends React.Component @displayName: "Notifications" @containerRequired: false constructor: (@props) -> @state = notifications: NotificationStore.notifications() componentDidMount: => @unsubscribeStore = NotificationStore.listen @_onStoreChange componentWillUnmount: => @unsubscribeStore() if @unsubscribeStore render: =>