/** @babel */ /** @jsx etch.dom */ import etch from 'etch' export default class StatusIconComponent { constructor ({count}) { this.count = count etch.initialize(this) } update () {} render () { return (
{this.count}
) } }