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.
36 lines
1.3 KiB
36 lines
1.3 KiB
|
|
import styles from '../../styles/Home.module.css';
|
|
import { Button, H3 } from '../../components/UI';
|
|
import React, { useState } from 'react'
|
|
|
|
interface Props {
|
|
children?: React.ReactNode;
|
|
onClick: () => void;
|
|
disable: boolean;
|
|
}
|
|
|
|
export default function Aririvals() {
|
|
console.log(45)
|
|
return(
|
|
<>
|
|
<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>
|
|
|
|
</>
|
|
)
|
|
}
|
|
|