UNPKG

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.

19 lines (16 loc) 646 B
import React, { Component } from 'react' import AllProviderListRow from './allProviderListRow.jsx'; export default class AllProviderList extends Component { render() { const { providers, onProviderClick } = this.props; return ( <ul className="cluedIn_allProviderList"> { providers.map( ( provider, i ) => { return (<AllProviderListRow key={i} onProviderClick={onProviderClick} provider={provider}></AllProviderListRow>); } )} </ul> ); } };