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

27 lines (24 loc) 537 B
import React from 'react'; import { ClinicalResultBloodPressure } from 'terra-clinical-result/lib/index'; const bloodpressureResultValue = { id: '111', systolic: { eventId: '111.1', result: { value: '120', unit: 'mmHg', }, isModified: false, hasComment: true, }, diastolic: { eventId: '111.2', result: { value: '80', unit: 'mmHg', }, isModified: true, hasComment: false, }, }; export default () => <ClinicalResultBloodPressure {...bloodpressureResultValue} />;