Skip to content

Commit 35fbcde

Browse files
committed
Fixed syntax error in coding exercise
1 parent 3c91f19 commit 35fbcde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coding-exercise/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export default function Counter() {
105105
countRef.current = countRef.current + 1;
106106
}
107107

108-
return
108+
return;
109109
<>
110110
<span>Count: {countRef.current}</span>
111111
<button onClick={handleIncrement}>

0 commit comments

Comments
 (0)