import React from 'react'; import PropTypes from 'prop-types'; import { View, Text, StyleSheet, Image } from 'react-native'; const styles = StyleSheet.create({ message: { borderColor: '#aaa', padding: 14, flexDirection: 'row', transform: [{ scaleY: -1 }] } }); export default class Message extends React.PureComponent { static propTypes = { item: PropTypes.object.isRequired, baseUrl: PropTypes.string.isRequired } render() { const extraStyle = {}; if (this.props.item.temp) { extraStyle.opacity = 0.3; } return ( {this.props.item.u.username} {this.props.item.msg} {/* {this.props.item.msg} */} ); } }