InnerChat.js 303 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 import React from 'react'; function InnerChat(props) { return ( <div> <div style={{fontSize:20, borderWidth:0}}>{props.value}</div> <div style={{color: 'gray', textAlign: 'right', borderWidth:0}}>{props.time}</div> </div> ); } export default InnerChat;