(Choose 1 answer) 9/50-CAP
How would you use the useState Hook to manage a counter in a React component?
A. const [count, setCount] = useState(0);
B. const count = useState(0)[0];
C. const count = useState(0);
D. const [count, setCount] = useState():