Skip to content

Commit

Permalink
Remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
ederssouza committed Jun 10, 2023
1 parent a2c9abb commit 928e05b
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/components/Counter/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,11 @@ export function Counter () {
Counter: <span data-testid="counter-value">{counter}</span>
</h1>

<button
data-testid="decrement-button"
onClick={handleDecrement}
>
<button onClick={handleDecrement}>
Decrement
</button>

<button
data-testid="increment-button"
onClick={handleIncrement}
>
<button onClick={handleIncrement}>
Increment
</button>
</>
Expand Down

0 comments on commit 928e05b

Please sign in to comment.