import React from 'react'; export const LoadingTeamsForm = (): JSX.Element => { fetch('/api/loadingLegisteredCommands', { method: 'POST'}) .then(res => res.json()) .then(json => console.log(res)) return ( <>
Название команды Учебное заведение ФИО участников Класс
Фиксики МАОУ СОШ 103 Иван, Петр, Дмитрий 1
); }; export default LoadingTeamsForm;