Skip to content

Commit 3c91f19

Browse files
authored
Merge pull request #370 from codomposer/fix/coding_exercise#5
fix string concatenation in coding exercise #5
2 parents 068132f + fdf617a commit 3c91f19

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

coding-exercise/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,10 @@ export default function Counter() {
202202

203203
return (
204204
<>
205-
<div>Clicked + {ref.current} + times</div>
206-
<button onClick={handleClick}>
207-
Click me!
208-
</button>
205+
<div>Clicked {ref.current} times</div>
206+
<button onClick={handleClick}>
207+
Click me!
208+
</button>
209209
</>
210210
);
211211
}

0 commit comments

Comments
 (0)