nextjs-table
Version:
Modern, customizable data table component for Next.js with CRUD operations
7 lines • 318 B
TypeScript
import React from 'react';
interface TableBodyProps extends React.HTMLAttributes<HTMLTableSectionElement> {
children: React.ReactNode;
}
export declare function TableBody({ children, className, ...props }: TableBodyProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=TableBody.d.ts.map