blob: 4579ce880dacba1369c52aa34c4e2cfaa93dc99e [file] [log] [blame]
import React from 'react';
import PropTypes from 'prop-types';
import { Alert } from 'react-bootstrap';
const propTypes = {
alertContent: PropTypes.node.isRequired,
};
const DashboardAlert = ({ alertContent }) => (
<div id="alert-container">
<div className="container-fluid">
<Alert bsStyle="warning">
{alertContent}
</Alert>
</div>
</div>
);
DashboardAlert.propTypes = propTypes;
export default DashboardAlert;