From a3d84a4be03d312478dc8191a0e9cb14967cb197 Mon Sep 17 00:00:00 2001 From: Philip London Date: Tue, 19 Jul 2022 18:51:48 +0200 Subject: [PATCH] docs(guide): Fix a typo in migrating-react-router-app.md (#3799) --- contributors.yml | 1 + docs/guides/migrating-react-router-app.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/contributors.yml b/contributors.yml index 81108eebbc2..548ca583e0e 100644 --- a/contributors.yml +++ b/contributors.yml @@ -308,6 +308,7 @@ - penx - phishy - plastic041 +- plondon - princerajroy - prvnbist - ptitFicus diff --git a/docs/guides/migrating-react-router-app.md b/docs/guides/migrating-react-router-app.md index d279c64ea8c..7eed793098f 100644 --- a/docs/guides/migrating-react-router-app.md +++ b/docs/guides/migrating-react-router-app.md @@ -36,7 +36,7 @@ import App from "./App"; ReactDOM.render(, 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: