mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
20 lines
No EOL
456 B
JavaScript
20 lines
No EOL
456 B
JavaScript
import React, { PropTypes, Component } from 'react';
|
|
import { Alert } from 'react-bootstrap';
|
|
|
|
const Flash = () => {
|
|
|
|
let type = this.props.message.type;
|
|
type = type === "error" ? "danger" : type; // if type is "error", use "danger" instead
|
|
|
|
return (
|
|
<Alert className="flash-message" bsStyle={type}>
|
|
{this.props.message.content}
|
|
</Alert>
|
|
)
|
|
}
|
|
|
|
Flash.propTypes = {
|
|
message: React.PropTypes.object.isRequired
|
|
}
|
|
|
|
export default Flash; |