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