source: components/roulette/Roulette.jsx

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 
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'
10import LostConnection from '../LostConnection'
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
25 <Alert onTop="true"/>
26
27 <Notification/>
28
29 <LostConnection/>
30 </div>
31 )
32}
33
34export default Roulette
Note: See TracBrowser for help on using the repository browser.