copy folder to complete hw

This commit is contained in:
2026-04-03 00:29:40 +10:00
parent 5aa559e99f
commit abe69ecefc
18 changed files with 3130 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import TableRow from './TableRow.jsx';
/*
компонент, для вывода thead таблицы
пропсы:
head - данные для шапки таблицы в виде массива
*/
const TableHead = (props) => {
return (
<thead>
<tr>
<TableRow row={ props.head } isHead="1"/>
</tr>
</thead>
)
}
export default TableHead;