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