Build a functional counter component using React Hooks that allows users to increment and decrement a value.
useState hook to manage a count valuevalueincrement and another with id decrementsetCount(prev => prev + 1) for best practice<div className="counter-app">
<p id="value">0</p>
<div className="button-group">
<button id="increment">+</button>
<button id="decrement">-</button>
</div>
</div>