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

12 lines (9 loc) 265 B
import PropTypes from 'prop-types'; /** * Enum for possible Result Statuses. * values mapped from http://hl7.org/fhir/2018Sep/valueset-observation-status.html */ const statusPropType = PropTypes.oneOf([ 'entered-in-error', ]); export default statusPropType;