source: components/poker/Poker.jsx@ 9bd09b0

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

Roulette place a bet functionality

  • Property mode set to 100644
File size: 522 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'
9
10const Poker = () => {
11 return (
12 <div className="app pokerMainContainer" style={{backgroundImage: 'url("/images/poker-bg.jpg")'}}>
13 <Head>
14 <title>Caessino - Poker</title>
15 </Head>
16
17 <PokerHeader/>
18
19 <Loading/>
20
21 <Alert/>
22
23 <Notification/>
24 </div>
25 )
26}
27
28export default Poker
Note: See TracBrowser for help on using the repository browser.