Skip to content

Commit 061b9ae

Browse files
authored
Merge pull request #373 from 0xprincedev/issue#367_syntax_error_in_coding_exercise
Fixed syntax error in coding exercise
2 parents 3c91f19 + 35fbcde commit 061b9ae

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)