Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions docs/quickstart-concurrent-mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,15 @@ cd myapp
> Ignore yarn/npm warnings.

```bash
yarn add firebase reactfire
yarn add firebase reactfire react@experimental react-dom@experimental

# or

npm install --save firebase reactfire
npm install --save firebase reactfire react@experimental react-dom@experimental
```

⚠️ **Status: Experimental**. In order to use the feature of concurrent mode, [an experimental build of React is required](https://reactjs.org/docs/concurrent-mode-adoption.html#installation).

## 4. Register your app with Firebase

1. In the center of the Firebase console's project overview page, click the Web icon to launch the setup workflow.
Expand Down Expand Up @@ -111,7 +113,7 @@ npm install --save firebase reactfire

```jsx
//...
ReactDOM.createRoot(document.getElementById('root')).render(
ReactDOM.unstable_createRoot(document.getElementById('root')).render(
<FirebaseAppProvider firebaseConfig={firebaseConfig} suspense={true}>
<App />
</FirebaseAppProvider>
Expand Down