You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.2 KiB
30 lines
1.2 KiB
import styles from '../../styles/Home.module.css';
|
|
import { H3, Button } from '../../components/UI';
|
|
import React, { useState } from 'react'
|
|
|
|
|
|
export default function Judging() {
|
|
|
|
|
|
return (
|
|
<div className={styles.container}>
|
|
<div className='header'>
|
|
<H3>Заезды: Робо-слалом </H3>
|
|
</div>
|
|
<main className={styles.main}>
|
|
<div className='boxButton'>
|
|
<p>Сторана А </p>
|
|
<Button onClick={()=> fnStart()} disable={false} color={'bgBlue2'}>Название</Button>
|
|
<Button onClick={()=> fnStart()} disable={false} color={'bgGreen'}>Название</Button>
|
|
<Button onClick={()=> fnStart()} disable={false} color={'bgGreen'}>Название</Button>
|
|
</div>
|
|
<div className='boxButton'>
|
|
<p>Сторона Б </p>
|
|
<Button onClick={()=> fnStart()} disable={false} color={'bgBlue2'}>Название</Button>
|
|
<Button onClick={()=> fnStart()} disable={false} color={'bgGreen'}>Название</Button>
|
|
<Button onClick={()=> fnStart()} disable={false} color={'bgGreen'}>Название</Button>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
)
|
|
}
|
|
|