source: components/roulette/Roulette.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: 539 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/>
25
26 <Notification/>
27 </div>
28 )
29}
30
31export default Roulette
Note: See TracBrowser for help on using the repository browser.