source: components/poker/Poker.jsx@ e9f11ac

main
Last change on this file since e9f11ac was ace7865, checked in by anastasovv <simon@…>, 2 years ago

Finished Roulette

  • Property mode set to 100644
File size: 590 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'
10
11const 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
31export default Poker
Note: See TracBrowser for help on using the repository browser.