import { useState } from 'preact/hooks' export const Counter = ({}) => { const [count, setCount] = useState(0) return (
{count}
) }