cluedin-widget
Version:
This is the project for creating and managing widgets in CluedIn.
14 lines (12 loc) • 434 B
JSX
import React, { Component } from 'react';
import FollowStats from './FollowStats.jsx';
import FollowButton from './Follow.jsx';
export default class FollowWidget extends Component {
render() {
const { entity } = this.props;
return (<div className="cluedIn_following_area">
<FollowStats entity={entity}></FollowStats>
<FollowButton entity={entity}></FollowButton>
</div>);
}
};