1
0
mirror of https://github.com/ascribe/onion.git synced 2024-09-28 03:58:55 +02:00
onion/js/mixins/alert_mixin.js

21 lines
423 B
JavaScript
Raw Normal View History

'use strict';
import React from 'react';
import AlertDismissable from '../components/ascribe_forms/alert';
let AlertMixin = {
setAlerts(errors){
let alerts = errors.map((error) => {
return <AlertDismissable error={error} key={error}/>;
});
this.setState({alerts: alerts});
2015-05-29 10:58:07 +02:00
},
2015-05-29 10:58:07 +02:00
clearAlerts(){
this.setState({alerts: null});
}
2015-05-29 10:58:07 +02:00
};
export default AlertMixin;