Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
docs(guide): Fix a typo in migrating-react-router-app.md (remix-run#3799
Browse files Browse the repository at this point in the history
)
  • Loading branch information
plondon authored and dvargas92495 committed Jul 22, 2022
1 parent e628b2e commit a3d84a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@
- penx
- phishy
- plastic041
- plondon
- princerajroy
- prvnbist
- ptitFicus
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/migrating-react-router-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import App from "./App";
ReactDOM.render(<App />, document.getElementById("app"));
```

Server-rendered React apps are a little different. The browser script is not rendering your app, but is "hydrating" the DOM provided by the server. Hydration is the process of mapping the elements in the DOM to their React component counterparts and setting up event listeners so that your app is interative.
Server-rendered React apps are a little different. The browser script is not rendering your app, but is "hydrating" the DOM provided by the server. Hydration is the process of mapping the elements in the DOM to their React component counterparts and setting up event listeners so that your app is interactive.

Let's start by creating two new files:

Expand Down

0 comments on commit a3d84a4

Please sign in to comment.