source: components/roulette/Ball.jsx@ faff334

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

Roulette rethought with 1 second update calls

  • Property mode set to 100644
File size: 481 bytes
RevLine 
[3a783f2]1import React from 'react'
2
3import { useSelector } from 'react-redux'
4
5const Ball = () => {
6 const playerState = useSelector(state => state.player);
7
8 return (
9 <>
[d0ef259]10 { (playerState.rouletteGame.game.timeToStart > playerState.rouletteGame.game.COUNTDOWN_FROM || playerState.rouletteGame.game.timeToStart <= 0) &&
[3a783f2]11 <img id="rouletteBall" src="/images/roulette-ball.png" alt="Roulette ball"/>
12 }
13 </>
14 )
15}
16
17export default Ball
Note: See TracBrowser for help on using the repository browser.