From b2adb619f048190f52af48e00eece46de72f1979 Mon Sep 17 00:00:00 2001 From: Mark-a-obrien <84234570+Mark-a-obrien@users.noreply.github.com> Date: Tue, 16 Apr 2024 18:24:51 +0400 Subject: [PATCH] Fix grammatical mistake (#5503) * Update react.md - fixed grammatical error Changed - "Server Components in allow developers to write components" to - "Server Components allows developers to write components" * Update src/data/question-groups/react/react.md --------- Co-authored-by: Kamran Ahmed --- src/data/question-groups/react/react.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/question-groups/react/react.md b/src/data/question-groups/react/react.md index 71d28e6d9cc6..4a3cb4e33962 100644 --- a/src/data/question-groups/react/react.md +++ b/src/data/question-groups/react/react.md @@ -210,7 +210,7 @@ questions: - 'Intermediate' - question: What are Server Components in React? answer: | - Server Components in allow developers to write components that render on the server instead of the client. Unlike traditional components, Server Components do not have a client-side runtime, meaning they result in a smaller bundle size and faster loads. They can seamlessly integrate with client components and can fetch data directly from the backend without the need for an API layer. This enables developers to build rich, interactive apps with less client-side code, improving performance and developer experience. + Server Components allow developers to write components that render on the server instead of the client. Unlike traditional components, Server Components do not have a client-side runtime, meaning they result in a smaller bundle size and faster loads. They can seamlessly integrate with client components and can fetch data directly from the backend without the need for an API layer. This enables developers to build rich, interactive apps with less client-side code, improving performance and developer experience. topics: - 'SSR' - 'Intermediate'