module.exports.NotificationCenter = React.createClass({ render: function() { var notifications = this.props.notifications; if (!notifications || notifications.length == 0) return (
No Notifications
) return (
{ notifications.map(function(notification, index) { return
{notification.message}
; }) }
); } });