From 2c11622f98ad5d2948ea4b24f0935a4db51a47e6 Mon Sep 17 00:00:00 2001 From: Ricky Hanlon Date: Tue, 23 Apr 2024 10:30:09 -0400 Subject: [PATCH] Links --- src/content/blog/2024/04/01/react-19.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/content/blog/2024/04/01/react-19.md b/src/content/blog/2024/04/01/react-19.md index 8a0768f27..395ea29f8 100644 --- a/src/content/blog/2024/04/01/react-19.md +++ b/src/content/blog/2024/04/01/react-19.md @@ -259,6 +259,8 @@ Server Components are a new option that allows rendering components ahead of tim Today we're releasing React Server Components as semver stable in React 19. This means libraries that ship Server Components and Server Actions can target React 19 as a peer dependency for use in frameworks that support the [Full-stack React Architecture](/learn/start-a-new-react-project#which-features-make-up-the-react-teams-full-stack-architecture-vision). +For more, see the docs for [React Server Components](/reference/full-stack/server-components). + #### How do I use Server Components? {/*how-do-i-use-server-components*/} @@ -283,6 +285,8 @@ When a Server Action is defined with the `"use server"` directive, your framewor Server Actions can be created in Server Components and passed as props to Client Components, or they can be imported and used in Client Components. +For more, see the docs for [React Server Actions](/reference/full-stack/server-actions). + #### How do I use Server Actions? {/*how-do-i-use-server-actions*/}