source: components/roulette/CoinOnTable.jsx@ 9bd09b0

main
Last change on this file since 9bd09b0 was 9bd09b0, checked in by anastasovv <simon@…>, 2 years ago

Roulette place a bet functionality

  • Property mode set to 100644
File size: 518 bytes
Line 
1import React from 'react'
2
3import { useSelector } from 'react-redux';
4
5const CoinOnTable = () => {
6 const styleState = useSelector(state => state.style);
7
8 return (
9 <>
10 {styleState.roulette.coinPlaced.x !== 0 && <img id="coinOnTable" src="/gold-coin.cur" alt="Gold coin" style={{zIndex: 20, position: 'absolute', left: `${styleState.roulette.coinPlaced.x}px`, top: `${styleState.roulette.coinPlaced.y}px`, transform: 'translate(-50%, -50%)'}}/>}
11 </>
12 )
13}
14
15export default CoinOnTable
Note: See TracBrowser for help on using the repository browser.