import * as React from 'react' import { cn } from '../../lib/utils' export interface TableSkeletonProps { rows?: number columns?: number className?: string } export function TableSkeleton({ rows = 5, columns = 4, className, }: TableSkeletonProps) { return (
| ))} |
|---|
| ))} |