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

17 lines (14 loc) 349 B
import React from 'react'; import { FlowsheetResultCell } from 'terra-clinical-result/lib/index'; const singleResultValue = [ { eventId: '111', result: { value: '12345.678', unit: 'mL', }, isModified: true, hasComment: true, }, ]; export default () => <FlowsheetResultCell resultDataSet={singleResultValue} />;