mwe-comments/src/Components/Comments/SingleComment/index.js
2019-07-13 22:40:08 +02:00

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