import { useState } from 'react' function Counter() { const [count, setCount] = useState(0) return (
) } export default Counter