UNPKG

terra-clinical-label-value-view

Version:

The label value view component displays a label and the associated value or list of values underneath the label.

13 lines (10 loc) 279 B
import React from 'react'; import LabelValueView from '../../../LabelValueView'; export default () => ( <LabelValueView label="Label" textValue="Some Sample Text"> <div id="child"> <h2>Sample Title</h2> Sample Text to Follow </div> </LabelValueView> );