Spaces:
Build error
Build error
File size: 340 Bytes
494eeb9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
function SlotMachine({ balance, onGameEnd }) {
// Existing code...
return (
<div>
<button
onClick={spinReels}
className="my-2 px-4 py-2 bg-[#facc15] rounded"
>
Spin
</button>
<BalanceDisplay balance={balance} />
<ul>{reelsDisplay}</ul>
</div>
)
}
export default SlotMachine |