blob: 123d6dbadfa3bf27f0348d096b96123771216a26 [file] [log] [blame]
import { connect } from 'react-redux';
import PermanentNotification from './PermanentNotification';
const mapStateToProps = ({ notifications }) => {
return {
visible: notifications.permanentNotificationVisible,
message: notifications.permanentNotificationMessage
};
};
const PermanentNotificationContainer = connect(
mapStateToProps
)(PermanentNotification);
export default PermanentNotificationContainer;