Skip to content

Commit

Permalink
docs(guide): Fix a typo in migrating-react-router-app.md (#3799)
Browse files Browse the repository at this point in the history
  • Loading branch information
plondon committed Jul 19, 2022
1 parent db0619d commit 8e69ed5
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 8e69ed5

Please sign in to comment.