diff --git a/content/docs/hooks-intro.md b/content/docs/hooks-intro.md index 6ca6851e..352a6062 100644 --- a/content/docs/hooks-intro.md +++ b/content/docs/hooks-intro.md @@ -53,7 +53,7 @@ React doesn't offer a way to "attach" reusable behavior to a component (for exam With Hooks, you can extract stateful logic from a component so it can be tested independently and reused. **Hooks allow you to reuse stateful logic without changing your component hierarchy.** This makes it easy to share Hooks among many components or with the community. -We'll discuss this more in [Writing Custom Hooks](/docs/hooks-custom.html#using-a-custom-hook). +We'll discuss this more in [Writing Custom Hooks](/docs/hooks-custom.html). ### Complex components become hard to understand