nextjs-table
Version:
Modern, customizable data table component for Next.js with CRUD operations
9 lines • 312 B
TypeScript
import React from 'react';
interface TableEmptyProps {
colSpan: number;
children: React.ReactNode;
className?: string;
}
export declare function TableEmpty({ colSpan, children, className }: TableEmptyProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=TableEmpty.d.ts.map