From d6e01e011a2b9d1660e62a9305b0fbb1452de084 Mon Sep 17 00:00:00 2001 From: Juraj Kapsz Date: Fri, 5 Jun 2026 17:02:51 +0200 Subject: [PATCH] docs: fix broken link to part 5 --- src/content/7/en/part7a.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/7/en/part7a.md b/src/content/7/en/part7a.md index 9d9addd919..66fa30df5d 100644 --- a/src/content/7/en/part7a.md +++ b/src/content/7/en/part7a.md @@ -15,7 +15,7 @@ In addition, this part contains a larger exercise series that extends the BlogLi React offers 18 different [built-in hooks](https://react.dev/reference/react/hooks), of which the most popular ones are the [useState](https://react.dev/reference/react/useState) and [useEffect](https://react.dev/reference/react/useEffect) hooks that we have already been using extensively. -In [part 5](/en/part5/props_children_and_proptypes#references-to-components-with-ref) we used the [useRef](https://react.dev/reference/react/useRef) and [useImperativeHandle](https://react.dev/reference/react/useImperativeHandle) which allowed a component to provide access to their functions to other components. In [part 6](/en/part6/react_query_use_reducer_and_the_context) we used [useContext](https://react.dev/reference/react/useContext) to implement a global state. +In [part 5](/en/part5/props_children_and_component_refs#references-to-components-with-ref) we used the [useRef](https://react.dev/reference/react/useRef) and [useImperativeHandle](https://react.dev/reference/react/useImperativeHandle) which allowed a component to provide access to their functions to other components. In [part 6](/en/part6/react_query_use_reducer_and_the_context) we used [useContext](https://react.dev/reference/react/useContext) to implement a global state. Within the last couple of years, hooks have become the standard way for libraries to expose their APIs. Throughout this course we have already seen several examples of this: [Zustand](https://zustand-demo.pmnd.rs/) provides useStore for accessing global state, [React Router](https://reactrouter.com/) exposes useNavigate and useParams for programmatic navigation and URL parameter access, and [React Query](https://tanstack.com/query/latest) offers useQuery and useMutation for server state management.