source: components/roulette/Roulette.jsx@ ace7865

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

Finished Roulette

  • Property mode set to 100644
File size: 552 bytes
Line 
1import React from 'react'
2
3import Head from 'next/head'
4
5import RouletteHeader from './RouletteHeader'
6import Loading from '../Loading'
7import Alert from '../Alert'
8import Notification from '../Notification'
9import Sections from './Sections'
10
11const 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
24 <Alert onTop="true"/>
25
26 <Notification/>
27 </div>
28 )
29}
30
31export default Roulette
Note: See TracBrowser for help on using the repository browser.