11 lines
289 B
JavaScript
11 lines
289 B
JavaScript
import React from 'react'
|
|
import ExpandedComment from './ExpandedComment'
|
|
import CollapsedComment from './CollapsedComment'
|
|
|
|
const SingleComment = props => {
|
|
if (props.hidden) return <CollapsedComment {...props} />
|
|
return <ExpandedComment {...props} />
|
|
}
|
|
|
|
export default SingleComment
|