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