// app/popup/App.tsx
import { useState } from 'preact/hooks';
export function App() {
const [count, setCount] = useState(0);
return (
<div className="p-4">
<h1 className="text-xl font-bold">Hello Preact!</h1>
<button
onClick={() => setCount(c => c + 1)}
className="mt-2 px-4 py-2 bg-blue-500 text-white rounded"
>
Count: {count}
</button>
</div>
);
}