function mapStateToProps (state, ownProps) {
  const { commentId } = ownProps.params
  const message = getStoreEntity(state, {id: commentId, type: 'comment'})

  return { message }