prvi kod za live uporabu
Some checks failed
ERP CI Pipeline / test (push) Has been cancelled

This commit is contained in:
mariomitte
2026-07-09 21:21:17 +02:00
parent 857bb65d52
commit 5d39e048ba
239 changed files with 25151 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { useState } from 'preact/hooks';
export default function ButtonDisplayCounter() {
const [count, setCount] = useState(0);
return (
<button
type="button"
onClick={() => setCount((value) => value + 1)}
className="rounded-e-xl border border-border-hairline border-s-0 px-3 py-2 text-xs font-mono text-text-muted hover:bg-canvas-deep"
>
Clicks: {count}
</button>
);
}