Use the "Verify Solution" button to get AI feedback on your React code.
Your task is to complete and debug a React functional component Counter. This component should display a numerical value and provide two buttons: "Increment" and "Decrement".
Requirements:
The counter value should be initialized to 0.
Clicking "Increment" should increase the counter by 1.
Clicking "Decrement" should decrease the counter by 1.
The component must correctly manage its internal state using React hooks.
Ensure all state updates are performed correctly and predictably, triggering re-renders as expected.