main
Last change
on this file was 433e0c5, checked in by anastasovv <simon@…>, 2 years ago |
Added complaints, managing credits, and lost connection screens
|
-
Property mode
set to
100644
|
File size:
624 bytes
|
Line | |
---|
1 | import React from 'react'
|
---|
2 |
|
---|
3 | import Head from 'next/head'
|
---|
4 |
|
---|
5 | import RouletteHeader from './RouletteHeader'
|
---|
6 | import Loading from '../Loading'
|
---|
7 | import Alert from '../Alert'
|
---|
8 | import Notification from '../Notification'
|
---|
9 | import Sections from './Sections'
|
---|
10 | import LostConnection from '../LostConnection'
|
---|
11 |
|
---|
12 | const Roulette = () => {
|
---|
13 | return (
|
---|
14 | <div className="app rouletteMainContainer">
|
---|
15 | <Head>
|
---|
16 | <title>Caessino - Roulette</title>
|
---|
17 | </Head>
|
---|
18 |
|
---|
19 | <RouletteHeader/>
|
---|
20 |
|
---|
21 | <Sections/>
|
---|
22 |
|
---|
23 | <Loading/>
|
---|
24 |
|
---|
25 | <Alert onTop="true"/>
|
---|
26 |
|
---|
27 | <Notification/>
|
---|
28 |
|
---|
29 | <LostConnection/>
|
---|
30 | </div>
|
---|
31 | )
|
---|
32 | }
|
---|
33 |
|
---|
34 | export default Roulette |
---|
Note:
See
TracBrowser
for help on using the repository browser.