use Chatbox in embeddable popup window
This commit is contained in:
14
src/components/message.jsx
Normal file
14
src/components/message.jsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import React from "react"
|
||||
import PropTypes from "prop-types"
|
||||
|
||||
const Message = ({ message, user_id }) => {
|
||||
const fromMe = message.sender.userId === user_id;
|
||||
|
||||
return (
|
||||
<div className={`message ${fromMe ? "from-me" : "from-support"}`}>
|
||||
<div className="text">{ message.event.content.body }</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default Message;
|
||||
Reference in New Issue
Block a user