import { h } from 'preact'; import PropTypes from 'prop-types'; const MessageModal = ({ currentUserId, message, listing, onSubmit, onChangeDraftingMessage, }) => { const isCurrentUserOnListing = listing.user_id === currentUserId; return (
{isCurrentUserOnListing ? (

This is your active listing. Any member can contact you via this form.

) : (

Contact {` ${listing.author.name} `} via DEV Connect

)}