import React from 'react' const ExpandedComment = props => { const { text } = props return (
  • profile
    username
    July 9 2019, 01:32:27 UTC {props.replies.length > 0 ? ( props.toggleCollapse(props.id)} > collapse ) : ( '' )}
    {text}
    reply
  • ) } export default ExpandedComment