Skip to content

Commit a1b3bb7

Browse files
moishinetzerclaude
andcommitted
Update Button increment, add watch script, and remove package-lock
- Change Button onClick increment from 1 to 2 - Add "watch" script to package.json for development with tsup --watch - Remove package-lock.json (likely switching to a different package manager) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a121b68 commit a1b3bb7

3 files changed

Lines changed: 2 additions & 36834 deletions

File tree

lib/Button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export function Button({ type, size }: ButtonProps) {
1010

1111
return (
1212
<button
13-
onClick={() => setCount((count) => count + 1)}
13+
onClick={() => setCount((count) => count + 2)}
1414
className={
1515
style.button +
1616
" " +

0 commit comments

Comments
 (0)