source: components/roulette/Sections.jsx

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

Finished poker and added ball to roulette

  • Property mode set to 100644
File size: 813 bytes
Line 
1import React from 'react'
2import Ball from './Ball';
3
4import BetModal from './BetModal';
5import BetsImage from './BetsImage';
6import CoinOnTable from './CoinOnTable';
7import PlayersDisplay from './PlayersDisplay';
8import Timer from './Timer';
9
10const Sections = () => {
11
12 return (
13 <>
14 <p className="rouletteInfoText">Please click on the number(s) you wish to bet on and select the amount you&apos;ll bet.<br/>Then, wait for the timer to go down to 0, and the wheel will spin. Best of luck 🍀</p>
15
16 <BetsImage/>
17
18 <CoinOnTable/>
19
20 <img id="rouletteWheelImg" src="/images/roulette-wheel.png" alt="Roulette wheel" style={{transform: 'translate(-50%, -50%)'}}/>
21
22 <Ball/>
23
24 <PlayersDisplay/>
25
26 <Timer/>
27
28 <BetModal/>
29 </>
30 )
31}
32
33export default Sections
Note: See TracBrowser for help on using the repository browser.