'use client'; import type { ColumnDef } from '@tanstack/react-table'; import { DataTable } from '@/components/data-table'; import type { UploadVideo } from '@/types'; interface UploadTableProps { columns: ColumnDef[]; uploads: UploadVideo[]; isLoading: boolean; skip: number; limit: number; total: number; onPageChange: (skip: number) => void; onLimitChange: (limit: number) => void; onRowClick: (upload: UploadVideo) => void; } export function UploadTable({ columns, uploads, isLoading, skip, limit, total, onPageChange, onLimitChange, onRowClick, }: UploadTableProps) { return ( ); }