/
githubmirror
/
atom
Обзор
Документация
Войти
/
githubmirror
/
atom
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/incompatible-packages/lib/status-icon-component.js
22 строки
454 B
Rafael Oleza
Reformat all JS files using prettier
31 май 2019, 19:33
31 май 2019, 19:33
7f3f040
Код
Авторство
О чём код?
/** @babel */ /** @jsx etch.dom */ import etch from 'etch'; export default class StatusIconComponent { constructor({ count }) { this.count = count; etch.initialize(this); } update() {} render() { return ( <div className="incompatible-packages-status inline-block text text-error"> <span className="icon icon-bug" /> <span className="incompatible-packages-count">{this.count}</span> </div> ); } }