i want to increment by 5 or 6, but the condition is that i have to pass this data when i click on button. something like <button onClick={onIncreaseClick(5)}>Increase</button> then the counter will be 0,5,10,15,...... something like <button onClick={onIncreaseClick(3)}>Increase</button> then the counter will be 0,3,6,9,12...... in short i will pass the value from button click.