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