From f0ed9ae0d9db94abb8bda025992a8ba99ce6beb3 Mon Sep 17 00:00:00 2001 From: Christian Alfoni Date: Fri, 8 Mar 2024 13:20:06 +0000 Subject: [PATCH 1/2] My initial commit --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index cb752c8..1da0aee 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,7 +4,7 @@ import viteLogo from "/vite.svg"; import "./App.css"; function App() { - const [count, setCount] = useState(10); + const [count, setCount] = useState(20); return ( <> From b869f5b2be9e771fa1f8b4fc741685fa01cf39e4 Mon Sep 17 00:00:00 2001 From: Christian Alfoni Date: Fri, 8 Mar 2024 13:22:06 +0000 Subject: [PATCH 2/2] fix: Update initial count value from 20 to 30 --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 1da0aee..f40d103 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,7 +4,7 @@ import viteLogo from "/vite.svg"; import "./App.css"; function App() { - const [count, setCount] = useState(20); + const [count, setCount] = useState(30); return ( <>