source: components/roulette/Roulette.jsx@ 22367db

main
Last change on this file since 22367db 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
RevLine 
[9bd09b0]1import React from 'react'
2
3import Head from 'next/head'
4
5import RouletteHeader from './RouletteHeader'
6import Loading from '../Loading'
7import Alert from '../Alert'
8import Notification from '../Notification'
9import Sections from './Sections'
[433e0c5]10import LostConnection from '../LostConnection'
[9bd09b0]11
12const 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
34export default Roulette
Note: See TracBrowser for help on using the repository browser.