cluedin-widget
Version: 
This project contains all the pages needed for browsing entities and searching them. The aim is to replace the CluedIn.Webapp project with this one when all the pages ( including the Admin page ) will be ported to REACT.
17 lines (13 loc) • 419 B
JSX
import React, { Component } from 'react'
import InsightLinkRouterLink from '../InsightLinkRouterLink.jsx';
class InsightLink extends Component {
    render() {
        const { insight } = this.props;
        return (<div>
            <InsightLinkRouterLink entity={insight.Entity}>
                {insight.Entity.EntityName}
            </InsightLinkRouterLink>
        </div>);
    }
}
export default InsightLink;