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) • 430 B
JSX
import React, { Component } from 'react'
import InsightSearchLinkRouterLink from '../InsightSearchLinkRouterLink.jsx';
class SearchLink extends Component {
render() {
const { search } =this.props;
return (<div>
<InsightSearchLinkRouterLink query={search.Query}>
{search.Name}
</InsightSearchLinkRouterLink>
</div>);
}
}
export default SearchLink;