From 12896bd23eeba79884245c1c29fdc568cf21a7fa Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Mon, 14 Mar 2016 08:50:46 -0400 Subject: Converting to Webpack. Stage 1. --- webapp/components/analytics/statistic_count.jsx | 35 +++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 webapp/components/analytics/statistic_count.jsx (limited to 'webapp/components/analytics/statistic_count.jsx') diff --git a/webapp/components/analytics/statistic_count.jsx b/webapp/components/analytics/statistic_count.jsx new file mode 100644 index 000000000..cbb8935dd --- /dev/null +++ b/webapp/components/analytics/statistic_count.jsx @@ -0,0 +1,35 @@ +// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved. +// See License.txt for license information. + +import {FormattedMessage} from 'react-intl'; + +import React from 'react'; + +export default class StatisticCount extends React.Component { + render() { + let loading = ( + + ); + + return ( +
+
+
+ {this.props.title} + +
+
{this.props.count == null ? loading : this.props.count}
+
+
+ ); + } +} + +StatisticCount.propTypes = { + title: React.PropTypes.node.isRequired, + icon: React.PropTypes.string.isRequired, + count: React.PropTypes.number +}; -- cgit v1.2.3-1-g7c22