main
Last change
on this file since faff334 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
|
Rev | Line | |
---|
[9bd09b0] | 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'
|
---|
[433e0c5] | 10 | import LostConnection from '../LostConnection'
|
---|
[9bd09b0] | 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 |
|
---|
[ace7865] | 25 | <Alert onTop="true"/>
|
---|
[9bd09b0] | 26 |
|
---|
| 27 | <Notification/>
|
---|
[433e0c5] | 28 |
|
---|
| 29 | <LostConnection/>
|
---|
[9bd09b0] | 30 | </div>
|
---|
| 31 | )
|
---|
| 32 | }
|
---|
| 33 |
|
---|
| 34 | export default Roulette |
---|
Note:
See
TracBrowser
for help on using the repository browser.