From 6a42e10d351f35c7d8e84bd186560b1adc7ac8c2 Mon Sep 17 00:00:00 2001 From: Thomas Loudiana Date: Wed, 26 Aug 2026 13:57:41 -0700 Subject: [PATCH] Update part5b.md It is possible to reuse the togglable element for this exercise very trivally so I am not sure why the note states otherwise. you dont even have to use a ref to this togglable --- src/content/5/en/part5b.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/5/en/part5b.md b/src/content/5/en/part5b.md index 6dff60a1e27..c15f929b51c 100644 --- a/src/content/5/en/part5b.md +++ b/src/content/5/en/part5b.md @@ -583,7 +583,7 @@ const Blog = ({ blog }) => { )} ``` -**NB:** Even though the functionality implemented in this part is almost identical to the functionality provided by the Togglable component, it can't be used directly to achieve the desired behavior. The easiest solution would be to add a state to the blog component that controls if the details are being displayed or not. +**NB:** You can reuse the togglable element for this functionality #### 5.8: Blog List Frontend, step 8