UNPKG

cluedin-widget

Version:

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

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> ); } };