2017-05-19 14:42:43 -06:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2017-06-02 07:19:39 +09:00
|
|
|
import Alert from 'react-bootstrap/lib/Alert'
|
2016-06-14 10:45:03 +09:00
|
|
|
|
2016-06-19 12:57:23 +09:00
|
|
|
const Flash = ({message}) => {
|
2016-06-14 10:45:03 +09:00
|
|
|
|
2016-06-19 12:57:23 +09:00
|
|
|
let type = message.type;
|
2016-06-14 10:45:03 +09:00
|
|
|
type = type === "error" ? "danger" : type; // if type is "error", use "danger" instead
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Alert className="flash-message" bsStyle={type}>
|
2016-06-19 12:57:23 +09:00
|
|
|
{message.content}
|
2016-06-14 10:45:03 +09:00
|
|
|
</Alert>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
Flash.propTypes = {
|
2017-05-19 14:42:43 -06:00
|
|
|
message: PropTypes.object.isRequired
|
2016-06-14 10:45:03 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Flash;
|