source: components/roulette/Sections.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: 724 bytes
Line 
1import React from 'react'
2
3import BetModal from './BetModal';
4import BetsImage from './BetsImage';
5import CoinOnTable from './CoinOnTable';
6import PlayersDisplay from './PlayersDisplay';
7import Timer from './Timer';
8
9const Sections = () => {
10
11 return (
12 <>
13 <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>
14
15 <BetsImage/>
16
17 <CoinOnTable/>
18
19 <img id="rouletteWheelImg" src="/images/roulette-wheel.png" alt="Roulette wheel"/>
20
21 <PlayersDisplay/>
22
23 <Timer/>
24
25 <BetModal/>
26 </>
27 )
28}
29
30export default Sections
Note: See TracBrowser for help on using the repository browser.