From 4d5810412daef339773a295da6747361164de0bb Mon Sep 17 00:00:00 2001 From: Basant <49369883+CuriosBasant@users.noreply.github.com> Date: Sun, 10 Apr 2022 19:11:16 +0530 Subject: [PATCH] Fixed typos where it says `size` instead of `side` --- blog/2021-01-03-react-server-component.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blog/2021-01-03-react-server-component.md b/blog/2021-01-03-react-server-component.md index b8078b9..2f1db9d 100644 --- a/blog/2021-01-03-react-server-component.md +++ b/blog/2021-01-03-react-server-component.md @@ -17,7 +17,7 @@ React Server Component (CSR) is a new component in React. Recently, All components in React are client-side component (MyComponent.js) but now you can create them as server-side component by just adding `.server` (MyComponent.server.js). -Anyway client-size component and server-size component work together very well. +Anyway client-side component and server-side component work together very well. @@ -25,11 +25,11 @@ Anyway client-size component and server-size component work together very well. ### React Server Component allows static content render faster -Server-side components can't have any interactivity like using `useState` hook but they can import client-size components with which the user interact. +Server-side components can't have any interactivity like using `useState` hook but they can import client-side components with which the user interact. ### Won't affect the bundle size -Whatever library you include inside your server component as well as the text content it won't affect the bundle size because it is render on the server. +Whatever library you include inside your server component as well as the text content it won't affect the bundle side because it is render on the server. ### Accessing database directly