UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

12 lines (11 loc) 500 B
import * as React from 'react'; import { AdaptableObjectRow } from './AdaptableObjectRow'; import { cloneObject } from '../../Utilities/Helpers/Helper'; export class WizardSummaryRow extends React.Component { render() { let colItems = cloneObject(this.props.colItems); colItems[0].Content = this.props.propertyName; colItems[1].Content = this.props.propertyValue; return React.createElement(AdaptableObjectRow, { colItems: colItems, fontSize: 'medium' }); } }