2023-11-30 18:21:08 +04:00

22 lines
553 B
JavaScript

const GroupPage = () => (
<main>
<table className = "table table-hover">
<thead>
<tr>
<th>Имя участника</th>
<th>Решено задач</th>
<th>Звание</th>
</tr>
</thead>
<tbody>
<tr>
<td> имя участника</td>
<td> кол-во задач</td>
<td> звание</td>
</tr>
</tbody>
</table>
</main>
);
export default GroupPage;