import React,{useRef} from 'react'; import Layout from '../components/Layout'; export const Registration = (): JSX.Element => { const form = useRef(null); const submit = e => { e.preventDefault(); //const data = new FormData(form.current.value); const form = e.target.name_team_coach.value; // eslint-disable-next-line no-console console.log(form); //fetch('/api/registration', { method: 'POST', body: data }) //.then(res => res.json()) // .then(json => setUser(json.user)) } return (

РоботТоп

Регистрация команды

Введите актуальные данные команды

Зарегистрированные команды

Название команды Учебное заведение ФИО участников Класс
Фиксики МАОУ СОШ 103 Иван, Петр, Дмитрий 1
); }; export default Registration;