import React from 'react'
import styles from './styles.css'

class UnreadCountLabel extends React.Component {
  constructor() {
    super()
  }

  render() {
    let { unreadCount } = this.props
    return ( <span className={ styles.unreadCountLabel }> { unreadCount } </span> )
  }
}

export default UnreadCountLabel