main
Last change
on this file since aac3b2b was ace7865, checked in by anastasovv <simon@…>, 2 years ago |
Finished Roulette
|
-
Property mode
set to
100644
|
File size:
590 bytes
|
Line | |
---|
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'
|
---|
9 | import PokerSections from './PokerSections'
|
---|
10 |
|
---|
11 | const Poker = () => {
|
---|
12 | return (
|
---|
13 | <div className="app pokerMainContainer" style={{backgroundImage: 'url("/images/poker-bg.jpg")'}}>
|
---|
14 | <Head>
|
---|
15 | <title>Caessino - Poker</title>
|
---|
16 | </Head>
|
---|
17 |
|
---|
18 | <PokerSections/>
|
---|
19 |
|
---|
20 | <PokerHeader/>
|
---|
21 |
|
---|
22 | <Loading/>
|
---|
23 |
|
---|
24 | <Alert/>
|
---|
25 |
|
---|
26 | <Notification/>
|
---|
27 | </div>
|
---|
28 | )
|
---|
29 | }
|
---|
30 |
|
---|
31 | export default Poker |
---|
Note:
See
TracBrowser
for help on using the repository browser.