Skip to content

Commit fdf617a

Browse files
committed
fix string concatenation in coding exercise #5
1 parent 068132f commit fdf617a

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)