1<div className="p-4 border rounded-lg"> 2 <h2 className="text-xl font-bold mb-4">Fights Counter</h2> 3 <p className="mb-2">Fight Club Fights Count: {count}</p> 4 <button 5 onClick={handleClick} 6 className="px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600" 7 > 8 Increment 9 </button> 10</div> 11