meses-messaging
Version:
Meses messaging SDK in JavaScript
15 lines (12 loc) • 317 B
JSX
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