Skip to content

Commit

Permalink
Update App.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
lxsmnsyc committed Jan 20, 2024
1 parent 6e9ffdb commit 3f35c09
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions playground/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,12 @@ export default function App() {
return (
<>
<h1>Count: {count()}</h1>
<button onClick={increment}>Increment</button>
<button onClick={decrement}>Decrement</button>
<button type="button" onClick={increment}>
Increment
</button>
<button type="button" onClick={decrement}>
Decrement
</button>
</>
);
}

0 comments on commit 3f35c09

Please sign in to comment.