Showing
2 changed files
with
4 additions
and
4 deletions
... | @@ -43,13 +43,13 @@ const Time = styled.span` | ... | @@ -43,13 +43,13 @@ const Time = styled.span` |
43 | font-size: 15px; | 43 | font-size: 15px; |
44 | `; | 44 | `; |
45 | 45 | ||
46 | -export default ({ time, message }) => { | 46 | +export default ({ time, text }) => { |
47 | return ( | 47 | return ( |
48 | <IncomingBox> | 48 | <IncomingBox> |
49 | <ImgIconBox /> | 49 | <ImgIconBox /> |
50 | <MsgContainer> | 50 | <MsgContainer> |
51 | <MsgBox> | 51 | <MsgBox> |
52 | - <Msg /> {message} Incoming Message | 52 | + <Msg /> {text} Incoming Message |
53 | </MsgBox> | 53 | </MsgBox> |
54 | <TimeBox> | 54 | <TimeBox> |
55 | <Time /> {time} Monday 00:00 | 55 | <Time /> {time} Monday 00:00 | ... | ... |
... | @@ -41,12 +41,12 @@ const Time = styled.span` | ... | @@ -41,12 +41,12 @@ const Time = styled.span` |
41 | font-size: 15px; | 41 | font-size: 15px; |
42 | `; | 42 | `; |
43 | 43 | ||
44 | -export default ({ time, message }) => { | 44 | +export default ({ time, text }) => { |
45 | return ( | 45 | return ( |
46 | <OutcomingBox> | 46 | <OutcomingBox> |
47 | <MsgContainer> | 47 | <MsgContainer> |
48 | <MsgBox> | 48 | <MsgBox> |
49 | - <Msg /> {message} Outcoming Message | 49 | + <Msg /> {text} Outcoming Message |
50 | </MsgBox> | 50 | </MsgBox> |
51 | <TimeBox> | 51 | <TimeBox> |
52 | <Time /> {time} Monday 00:00 | 52 | <Time /> {time} Monday 00:00 | ... | ... |
-
Please register or login to post a comment