Skip to content

Commit

Permalink
Fix wrong version of react-reconciler.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCloudlessSky committed Nov 30, 2023
1 parent 42cbc05 commit 3bbddaf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ npm install @remote-ui/react --save

This package also has peer dependencies on a few React-related packages, but the versions you need depend on the version of React you are using:

**React 17.x.x**: you will need to have React installed. Additionally, if you are in the “remote” environment, you will need a dependency on `react-reconciler` between greater than or equal to `0.26.0`, and less than `0.28.0`:
**React 17.x.x**: you will need to have React installed. Additionally, if you are in the “remote” environment, you will need a dependency on `react-reconciler` between greater than or equal to `0.26.0`, and less than `0.27.0`:

```
yarn add react@^17.0.0 react-reconciler@^0.27.0
yarn add react@^17.0.0 react-reconciler@~0.26.0
# or, with `npm`:
npm install react@^17.0.0 react-reconciler@^0.27.0 --save
npm install react@^17.0.0 react-reconciler@~0.26.0 --save
```

**React 18.x.x and later**: you will need to have React installed. Additionally, if you are in the “remote” environment, you will need a dependency on `react-reconciler` greater than or equal to `0.28.0`:
Expand Down

0 comments on commit 3bbddaf

Please sign in to comment.