source: components/poker/Poker.jsx@ 55701f0

main
Last change on this file since 55701f0 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: 662 bytes
Line 
1import React from 'react'
2
3import Head from 'next/head'
4
5import PokerHeader from './PokerHeader'
6import Loading from '../Loading'
7import Alert from '../Alert'
8import Notification from '../Notification'
9import PokerSections from './PokerSections'
10import LostConnection from '../LostConnection'
11
12const Poker = () => {
13 return (
14 <div className="app pokerMainContainer" style={{backgroundImage: 'url("/images/poker-bg.jpg")'}}>
15 <Head>
16 <title>Caessino - Poker</title>
17 </Head>
18
19 <PokerSections/>
20
21 <PokerHeader/>
22
23 <Loading/>
24
25 <Alert/>
26
27 <Notification/>
28
29 <LostConnection/>
30 </div>
31 )
32}
33
34export default Poker
Note: See TracBrowser for help on using the repository browser.