import Emoji from './Emoji'; const CommentDisplay = ({ comment }) => { // Assume receiving a comment object let emoji; if (comment.emotion === 'Positive') { emoji = '😃'; } else if (comment.emotion === 'Neutral') { emoji = '😐'; } else { emoji = '😡'; } return (
Avatar
{comment.time}
{comment.text}
); }; export default CommentDisplay;