From c71df0a5496f2b87c18a21950b73a5ee92e94507 Mon Sep 17 00:00:00 2001 From: Kevin <33929105+Nkevi@users.noreply.github.com> Date: Sat, 28 Sep 2024 09:48:45 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20Modify=20the=20anchor=20text=20=E2=80=9C?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=20Effect=20=E5=90=8C=E6=AD=A5=E2=80=9D=20(#1?= =?UTF-8?q?596)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/content/learn/escape-hatches.md | 4 ++-- src/sidebarLearn.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/content/learn/escape-hatches.md b/src/content/learn/escape-hatches.md index c5d90d8177..b246d93490 100644 --- a/src/content/learn/escape-hatches.md +++ b/src/content/learn/escape-hatches.md @@ -97,7 +97,7 @@ export default function Form() { -## 使用 Effect 同步 {/*synchronizing-with-effects*/} +## 使用 Effect 进行同步 {/*synchronizing-with-effects*/} 有些组件需要与外部系统同步。例如,可能需要根据 React 状态控制非 React 组件、设置服务器连接或在组件出现在屏幕上时发送分析日志。与处理特定事件的事件处理程序不同,**Effect** 在渲染后运行一些代码。使用它将组件与 React 之外的系统同步。 @@ -187,7 +187,7 @@ input { display: block; margin-bottom: 20px; } -阅读 **[使用 Effect 同步](/learn/synchronizing-with-effects)** 以了解如何将组件与外部系统同步。 +阅读 **[使用 Effect 进行同步](/learn/synchronizing-with-effects)** 以了解如何将组件与外部系统同步。 diff --git a/src/sidebarLearn.json b/src/sidebarLearn.json index 0730344e50..64b46b2fca 100644 --- a/src/sidebarLearn.json +++ b/src/sidebarLearn.json @@ -182,7 +182,7 @@ "path": "/learn/manipulating-the-dom-with-refs" }, { - "title": "使用 Effect 同步", + "title": "使用 Effect 进行同步", "path": "/learn/synchronizing-with-effects" }, {