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:
552 bytes
|
Rev | Line | |
---|
[9bd09b0] | 1 | import React from 'react'
|
---|
| 2 |
|
---|
| 3 | import Head from 'next/head'
|
---|
| 4 |
|
---|
| 5 | import RouletteHeader from './RouletteHeader'
|
---|
| 6 | import Loading from '../Loading'
|
---|
| 7 | import Alert from '../Alert'
|
---|
| 8 | import Notification from '../Notification'
|
---|
| 9 | import Sections from './Sections'
|
---|
| 10 |
|
---|
| 11 | const Roulette = () => {
|
---|
| 12 | return (
|
---|
| 13 | <div className="app rouletteMainContainer">
|
---|
| 14 | <Head>
|
---|
| 15 | <title>Caessino - Roulette</title>
|
---|
| 16 | </Head>
|
---|
| 17 |
|
---|
| 18 | <RouletteHeader/>
|
---|
| 19 |
|
---|
| 20 | <Sections/>
|
---|
| 21 |
|
---|
| 22 | <Loading/>
|
---|
| 23 |
|
---|
[ace7865] | 24 | <Alert onTop="true"/>
|
---|
[9bd09b0] | 25 |
|
---|
| 26 | <Notification/>
|
---|
| 27 | </div>
|
---|
| 28 | )
|
---|
| 29 | }
|
---|
| 30 |
|
---|
| 31 | export default Roulette |
---|
Note:
See
TracBrowser
for help on using the repository browser.