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
|
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'
|
---|
[9bd09b0] | 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 |
|
---|
[ace7865] | 18 | <PokerSections/>
|
---|
| 19 |
|
---|
[9bd09b0] | 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.