/**
*
* NotificationsContainer
*
*/
import React from 'react';
import ReactCSSTransitionGroup from 'react/lib/ReactCSSTransitionGroup';
import Notification from 'components/Notification';
import styles from './styles.scss';
class NotificationsContainer extends React.Component { // eslint-disable-line react/prefer-stateless-function
render() {
let notifications;
if (this.props.notifications) {
notifications = this.props.notifications.map((notification) => (