import { h } from 'preact'; import PropTypes from 'prop-types'; const Alert = ({ showAlert }) => { const otherClassname = showAlert ? '' : 'chatalert__default--hidden'; return (
More new messages below
); }; Alert.propTypes = { showAlert: PropTypes.bool.isRequired, }; export default Alert;