React = require 'react' NotificationStore = require './notifications-store' module.exports = Notifications = React.createClass getInitialState: -> notifications: NotificationStore.notifications() componentDidMount: -> @unsubscribeStore = NotificationStore.listen @_onStoreChange componentWillUnmount: -> @unsubscribeStore() if @unsubscribeStore render: ->