main
Last change
on this file since e903234 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
|
Rev | Line | |
---|
[9bd09b0] | 1 | import React from 'react'
|
---|
| 2 |
|
---|
| 3 | import Head from 'next/head'
|
---|
| 4 |
|
---|
| 5 | import PokerHeader from './PokerHeader'
|
---|
| 6 | import Loading from '../Loading'
|
---|
| 7 | import Alert from '../Alert'
|
---|
| 8 | import Notification from '../Notification'
|
---|
[ace7865] | 9 | import PokerSections from './PokerSections'
|
---|
[433e0c5] | 10 | import LostConnection from '../LostConnection'
|
---|
[9bd09b0] | 11 |
|
---|
| 12 | const 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 |
|
---|
[ace7865] | 19 | <PokerSections/>
|
---|
| 20 |
|
---|
[9bd09b0] | 21 | <PokerHeader/>
|
---|
| 22 |
|
---|
| 23 | <Loading/>
|
---|
| 24 |
|
---|
| 25 | <Alert/>
|
---|
| 26 |
|
---|
| 27 | <Notification/>
|
---|
[433e0c5] | 28 |
|
---|
| 29 | <LostConnection/>
|
---|
[9bd09b0] | 30 | </div>
|
---|
| 31 | )
|
---|
| 32 | }
|
---|
| 33 |
|
---|
| 34 | export default Poker |
---|
Note:
See
TracBrowser
for help on using the repository browser.