first commit
Some checks failed
Build / run (push) Has been cancelled

This commit is contained in:
maher
2025-10-29 11:42:25 +01:00
commit 703f50a09d
4595 changed files with 385164 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import {HeaderCell} from '@common/ui/tables/header-cell';
import React, {useContext} from 'react';
import {TableContext} from '@common/ui/tables/table-context';
export function TableHeaderRow() {
const {columns} = useContext(TableContext);
return (
<div
role="row"
aria-rowindex={1}
tabIndex={-1}
className="flex gap-x-16 px-16"
>
{columns.map((column, columnIndex) => (
<HeaderCell index={columnIndex} key={column.key} />
))}
</div>
);
}