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.
47 lines
1.6 KiB
47 lines
1.6 KiB
import React from 'react';
|
|
import Layout from '../components/Layout';
|
|
import RegistrationForm from '../components/RegistrationForm';
|
|
import LoadingTeamsForm from '../components/LoadingTeamsForm';
|
|
import { useSelector } from 'react-redux';
|
|
|
|
export const Registration = (): JSX.Element => {
|
|
|
|
return (
|
|
<Layout
|
|
customMeta={{
|
|
title: 'Регистрация',
|
|
}}
|
|
>
|
|
<RegistrationForm/>
|
|
<div className="relative overflow-x-auto shadow-md sm:rounded-lg">
|
|
<div className="px-4 sm:px-2 m-4 block">
|
|
<h3 className="text-lg font-medium leading-6">Зарегистрированные команды</h3>
|
|
</div>
|
|
<table className="w-full text-sm text-left text-gray-500 dark:text-gray-400">
|
|
<thead className="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400">
|
|
<tr>
|
|
<th scope="col" className="px-6 py-3">
|
|
Название команды
|
|
</th>
|
|
<th scope="col" className="px-6 py-3">
|
|
ФИО тренера
|
|
</th>
|
|
<th scope="col" className="px-6 py-3">
|
|
Учебное заведение
|
|
</th>
|
|
<th scope="col" className="px-6 py-3">
|
|
ФИО участников
|
|
</th>
|
|
<th scope="col" className="px-6 py-3">
|
|
Возрастная группа
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<LoadingTeamsForm/>
|
|
</table>
|
|
</div>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default Registration;
|
|
|