main
Last change
on this file since b4369c8 was 87614a5, checked in by anastasovv <simon@…>, 2 years ago |
Blackjack prototype
|
-
Property mode
set to
100644
|
File size:
428 bytes
|
Line | |
---|
1 | import React from 'react'
|
---|
2 |
|
---|
3 | import Header from '../../components/Header'
|
---|
4 | import FullwidthText from '../../components/FullwidthText'
|
---|
5 |
|
---|
6 | import Head from 'next/head'
|
---|
7 |
|
---|
8 | const poker = () => {
|
---|
9 | return (
|
---|
10 | <div className="app">
|
---|
11 | <Head>
|
---|
12 | <title>Caessino - Poker</title>
|
---|
13 | </Head>
|
---|
14 |
|
---|
15 | <Header main="false"/>
|
---|
16 | <FullwidthText title="Poker" subtitle="Under Construction..."/>
|
---|
17 | </div>
|
---|
18 | )
|
---|
19 | }
|
---|
20 |
|
---|
21 | export default poker |
---|
Note:
See
TracBrowser
for help on using the repository browser.