From fdf617af0745166f1b1380d837d4156a93b0692d Mon Sep 17 00:00:00 2001 From: codomposer Date: Wed, 29 Oct 2025 09:19:28 -0400 Subject: [PATCH] fix string concatenation in coding exercise #5 --- coding-exercise/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/coding-exercise/README.md b/coding-exercise/README.md index b026680b..9a9b726b 100644 --- a/coding-exercise/README.md +++ b/coding-exercise/README.md @@ -202,10 +202,10 @@ export default function Counter() { return ( <> -
Clicked + {ref.current} + times
- +
Clicked {ref.current} times
+ ); }