main
Last change
on this file since aac3b2b 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 | |
---|
1 | import React from 'react'
|
---|
2 | import Ball from './Ball';
|
---|
3 |
|
---|
4 | import BetModal from './BetModal';
|
---|
5 | import BetsImage from './BetsImage';
|
---|
6 | import CoinOnTable from './CoinOnTable';
|
---|
7 | import PlayersDisplay from './PlayersDisplay';
|
---|
8 | import Timer from './Timer';
|
---|
9 |
|
---|
10 | const 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'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 |
|
---|
33 | export default Sections |
---|
Note:
See
TracBrowser
for help on using the repository browser.