first commit
Some checks failed
Release / Release (push) Failing after 1m44s

This commit is contained in:
Lectom C Han
2025-07-07 18:53:25 +09:00
commit 421105f082
102 changed files with 63663 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
import { trackEvent } from '@aptabase/browser';
import { useState } from 'react';
function IndexPopup() {
const [count, setCount] = useState(0);
function increment() {
trackEvent('increment', { count: count + 1 });
setCount((c) => c + 1);
}
function decrement() {
trackEvent('decrement', { count: count - 1 });
setCount((c) => c - 1);
}
return (
<div>
<button onClick={increment}>Increment</button>
<button onClick={decrement}>decrement</button>
</div>
);
}
export default IndexPopup;