diff options
| author | Yuval Adam <_@yuv.al> | 2025-06-15 13:59:21 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-06-15 13:59:21 +0200 |
| commit | 318a320acfb2db97abba3263a3d3929cbbf693dd (patch) | |
| tree | d1e2b4ef4037720d7d150959e14597a3ed576cb8 /src/components/Counter.jsx | |
| parent | b41249323c0c78201d8c7257eaee50796177c4b8 (diff) | |
Remove old files and some cleanup
Diffstat (limited to 'src/components/Counter.jsx')
| -rw-r--r-- | src/components/Counter.jsx | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/components/Counter.jsx b/src/components/Counter.jsx deleted file mode 100644 index 8661dc0..0000000 --- a/src/components/Counter.jsx +++ /dev/null @@ -1,16 +0,0 @@ -import { useState } from 'react'; - -export default function Counter() { - const [count, setCount] = useState(0); - - return ( - <div className="flex justify-center"> - <button - className="px-4 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-600 transition-colors" - onClick={() => setCount(count + 1)} - > - Clicked {count} times - </button> - </div> - ); -} |
