From 5529642720c34742cc7f24680da1d85776ab13d4 Mon Sep 17 00:00:00 2001 From: Nat Alison Date: Wed, 6 Feb 2019 17:34:41 -0800 Subject: [PATCH] fix effect hook error --- content/docs/hooks-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/hooks-overview.md b/content/docs/hooks-overview.md index fef7de00b..198bd6d88 100644 --- a/content/docs/hooks-overview.md +++ b/content/docs/hooks-overview.md @@ -68,7 +68,7 @@ React provides a few built-in Hooks like `useState`. You can also create your ow > >You can learn more about the State Hook on a dedicated page: [Using the State Hook](/docs/hooks-state.html). -## ⚡️ Effect Hook {#️-effect-hook} +## ⚡️ Effect Hook {#-effect-hook} You've likely performed data fetching, subscriptions, or manually changing the DOM from React components before. We call these operations "side effects" (or "effects" for short) because they can affect other components and can't be done during rendering.