source:
components/blackjack/Blackjack.jsx@
22367db
Last change on this file since 22367db was 433e0c5, checked in by , 2 years ago | |
---|---|
|
|
File size: 898 bytes |
Line | |
---|---|
1 | import React from 'react' |
2 | |
3 | import Head from 'next/head' |
4 | |
5 | import BlackjackHeader from './BlackjackHeader' |
6 | import PlayButtons from '../../components/blackjack/PlayButtons' |
7 | import Cards from '../../components/blackjack/Cards' |
8 | import DisplayBet from '../../components/blackjack/DisplayBet' |
9 | import Loading from '../Loading' |
10 | import Alert from '../Alert' |
11 | import Notification from '../Notification' |
12 | import LostConnection from '../LostConnection' |
13 | |
14 | const Blackjack = () => { |
15 | return ( |
16 | <div className="app blackjackMainContainer" style={{backgroundImage: 'url("/images/blackjack-bg.png")', backgroundPosition: '0% 30%'}}> |
17 | <Head> |
18 | <title>Caessino - Blackjack</title> |
19 | </Head> |
20 | |
21 | <BlackjackHeader/> |
22 | |
23 | <PlayButtons/> |
24 | |
25 | <Cards/> |
26 | |
27 | <DisplayBet/> |
28 | |
29 | <Loading/> |
30 | |
31 | <Alert/> |
32 | |
33 | <Notification/> |
34 | |
35 | <LostConnection/> |
36 | </div> |
37 | ) |
38 | } |
39 | |
40 | export default Blackjack |
Note:
See TracBrowser
for help on using the repository browser.