From c498d3569864452c9f4bc8833243feffec9dc03f Mon Sep 17 00:00:00 2001 From: Mohamed Yahye El Joud Date: Thu, 22 Feb 2024 07:32:05 +0000 Subject: [PATCH 1/2] Update ssr-and-hydration.md Small typo --- docs/guides/ssr-and-hydration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/ssr-and-hydration.md b/docs/guides/ssr-and-hydration.md index 1182610e73..2ce02e693e 100644 --- a/docs/guides/ssr-and-hydration.md +++ b/docs/guides/ssr-and-hydration.md @@ -95,7 +95,7 @@ that runs in the browser. The right way to "hydrate" a component is by using `hy ### React -Let's say we want to render an statefull app using react. In order to do that we need to +Let's say we want to render a statefull app using react. In order to do that we need to use `express`, `react`, `react-dom/server` and `react-dom/client`. Let's dive into that: From 025c9112869f7bbd15faa445c1fd571548083662 Mon Sep 17 00:00:00 2001 From: Daishi Kato Date: Thu, 22 Feb 2024 18:06:19 +0900 Subject: [PATCH 2/2] Update docs/guides/ssr-and-hydration.md Co-authored-by: Blazej Sewera --- docs/guides/ssr-and-hydration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/ssr-and-hydration.md b/docs/guides/ssr-and-hydration.md index 2ce02e693e..5e13ccd86e 100644 --- a/docs/guides/ssr-and-hydration.md +++ b/docs/guides/ssr-and-hydration.md @@ -95,7 +95,7 @@ that runs in the browser. The right way to "hydrate" a component is by using `hy ### React -Let's say we want to render a statefull app using react. In order to do that we need to +Let's say we want to render a stateful app using React. In order to do that we need to use `express`, `react`, `react-dom/server` and `react-dom/client`. Let's dive into that: