cluedin-widget
Version:
This is the project for creating and managing widgets in CluedIn.
12 lines (10 loc) • 403 B
JSX
import React, { Component } from 'react';
export default class FollowStats extends Component {
render() {
const { entity } = this.props;
return (<div className="cluedIn_following_info">
<span className="cluedIn_following_info_number">{entity.NumberOfFollowers}</span>
<span className="cluedIn_following_info_title">Followers</span>
</div>);
}
};