import React from 'react'; import { Alert } from 'react-bootstrap'; class Alerts extends React.PureComponent { removeAlert(alert) { this.props.actions.removeAlert(alert); } render() { const alerts = this.props.alerts.map((alert) => {alert.msg} ); return (