import { useState } from 'preact/hooks'; export default function ButtonDisplayCounter() { const [count, setCount] = useState(0); return ( ); }