Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: zeevo/react-fhirclient
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.1
Choose a base ref
...
head repository: zeevo/react-fhirclient
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on Nov 30, 2020

  1. Update README.md

    zeevo authored Nov 30, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e181e88 View commit details

Commits on Dec 1, 2020

  1. Update README.md

    zeevo authored Dec 1, 2020
    Copy the full SHA
    bdb2016 View commit details
  2. Update README.md

    zeevo authored Dec 1, 2020
    Copy the full SHA
    40b95bd View commit details
Showing with 20 additions and 4 deletions.
  1. +20 −4 README.md
24 changes: 20 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -4,7 +4,19 @@
## Getting started

1. Add your `FhirClientProvider` to your ReactDOM tree.
1. Install it using NPM or Yarn

```
npm i react-fhirclient
```

or:

```
yarn add react-fhirclient
```

2. Add your `FhirClientProvider` to your ReactDOM tree.

```js
ReactDOM.render(
@@ -17,7 +29,7 @@ ReactDOM.render(
);
```

2. Use `useFhirClient()` in your hooks.
3. Use `useFhirClient()` in your hooks.

```js
import { useState, useEffect } from 'react';
@@ -49,6 +61,10 @@ function App() {
export default App;
```

3. Learn `fhirclient`.
4. Learn `fhirclient`.

This project uses [fhirclient](https://github.com/smart-on-fhir/client-js) under the hood. Check out its [documentation](http://docs.smarthealthit.org/client-js/).

## Future

This project uses [fhirclient](https://github.com/smart-on-fhir/client-js) under the hood. Check out it's [documentation](http://docs.smarthealthit.org/client-js/).
Supporting any FHIR client would be beneficial to the community. If you have a FHIR client that you want supported, raise an Issue describing it.