import React from 'react'; import PropTypes from 'prop-types'; import { Alert } from 'react-bootstrap'; const propTypes = { alertContent: PropTypes.node.isRequired, }; const DashboardAlert = ({ alertContent }) => (
{alertContent}
); DashboardAlert.propTypes = propTypes; export default DashboardAlert;