Files
uni-web-site/site/src/components/TableHead.jsx
2026-04-03 00:29:40 +10:00

18 lines
420 B
JavaScript

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