From 35fbcde89234f76dcc0d7c958674a3d7853309bd Mon Sep 17 00:00:00 2001 From: 0xprincedev Date: Thu, 30 Oct 2025 10:22:10 -0400 Subject: [PATCH] Fixed syntax error in coding exercise --- coding-exercise/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coding-exercise/README.md b/coding-exercise/README.md index 9a9b726b..60c76c4a 100644 --- a/coding-exercise/README.md +++ b/coding-exercise/README.md @@ -105,7 +105,7 @@ export default function Counter() { countRef.current = countRef.current + 1; } - return + return; <> Count: {countRef.current}