mr01-table-plugin
Version:
The Table Plugin Modulable is a versatile React component designed for displaying and managing tabular data. It comes with features such as sorting, searching, pagination, and customizable entries per page. This README will guide you through the installat
16 lines (15 loc) • 529 B
TypeScript
import React from 'react';
/**
* The `TablePlugin` component is a versatile table display component for rendering employee information.
* It includes features like sorting, searching, pagination, and configurable entries per page.
* @component
* @returns {JSX.Element} The rendered `TablePlugin` component.
*/
interface TablePluginProps {
headers: string[];
data: string[][];
showHeader?: boolean;
showTableInfo?: boolean;
}
declare const TablePlugin: React.FC<TablePluginProps>;
export default TablePlugin;