diff --git a/src/components/Comments/SingleComment/ExpandedComment.js b/src/components/Comments/SingleComment/ExpandedComment.js index f325948..95d711e 100644 --- a/src/components/Comments/SingleComment/ExpandedComment.js +++ b/src/components/Comments/SingleComment/ExpandedComment.js @@ -1,6 +1,6 @@ import React from 'react' + const ExpandedComment = props => { - const { text } = props return (
  • @@ -12,7 +12,7 @@ const ExpandedComment = props => {
    - July 9 2019, 01:32:27 UTC + {props.createdAt} {props.replies.length > 0 ? ( {
    -
    {text}
    +
    {props.text}
  • ) }