import React from 'react'; import PropTypes from 'prop-types'; class CardAlert extends React.Component { render() { return this.props.show ?
{this.props.message}
: ''; } } CardAlert.propTypes = { show: PropTypes.bool, message: PropTypes.string }; export default CardAlert;