sdy

change bracket

......@@ -48,7 +48,8 @@ const Time = styled.span`
export default ({ text, avatar, time }) => {
console.log(time);
let UTCTime = moment();
let UTCTime = moment().utc();
console.log(UTCTime);
return (
<MessageWrapper className="MessageWrapper">
<MsgContainer>
......@@ -58,7 +59,7 @@ export default ({ text, avatar, time }) => {
<Msg> {text} </Msg>
</MsgBox>
<TimeBox>
<Time>{UTCTime}</Time>
<Time>1</Time>
</TimeBox>
</ColumnBox>
</MsgContainer>
......