hi-profiles
Version:
React components for the ABDM Health Information Profiles
22 lines (16 loc) • 467 B
Markdown
**This package provides react components for the [ABDM FHIR profiles](https://nrces.in/ndhm/fhir/r4/index.html).**
```sh
npm install hi-profiles
```
```js
import { HIProfile } from "hi-profiles";
import fhirBundle from "..."; // sample abdm fhir bundles can be found at https://sandbox.abdm.gov.in/abdm-docs/DiagnosticReports
export default function App() {
return (
<HIProfile bundle={fhirBundle} />
)
}
```