feat: ticket system base implementation

This commit is contained in:
2026-06-19 01:19:01 +05:30
parent a18fff4d6f
commit 8c3d19a429
19 changed files with 1400 additions and 27 deletions

View File

@@ -272,7 +272,10 @@ function DataTableContent<TData, TValue>({
Array.from({ length: 5 }).map((_, idx) => (
<TableRow key={idx}>
{columns.map((_, colIdx) => (
<TableCell key={colIdx}>
<TableCell
key={colIdx}
className="border-b border-border"
>
<Skeleton className="h-4 w-full max-w-35" />
</TableCell>
))}