UNPKG

terra-clinical-result

Version:

The Terra Clinical Result package is a collection of standardized views for presenting clinical results documented to a Patient's Medical Chart, such as Vital Signs, Laboratory Results, and Discretely Documented Values

15 lines (11 loc) 440 B
import React from 'react'; import ClinicalResult from 'terra-clinical-result/lib/index'; import classNames from 'classnames/bind'; import styles from '../Examples.module.scss'; const cx = classNames.bind(styles); export default () => ( <React.Fragment> <span className={cx('example-description-text')}>Use the `hasResultNoData` prop to show the no data display:</span> <ClinicalResult hasResultNoData /> </React.Fragment> );