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

Interested?

{isCurrentUserOnListing ? (

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

) : (

Message {` ${listing.author.name} `}

)}