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.

18 lines (16 loc) 463 B
import React, { Component } from 'react'; export default class ENtityValueRow extends Component { render() { const { name } = this.props; return ( <div className="cluedIn_m-t-xs"> <div className="cluedIn_label"> {name} </div> <div className="cluedIn_value"> {this.props.children} </div> </div> ); } };