UNPKG

cluedin-widget

Version:

This is the project for creating and managing widgets in CluedIn.

21 lines (18 loc) 712 B
import React, { Component } from 'react' import iso from '../../../iso' import config from '../../config'; 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> ); } };