UNPKG

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

15 lines (14 loc) 327 B
export interface Employee { id: number; firstName: string; lastName: string; startDate: string; departments: string; dateOfBirth: string; street: string; city: string; stateCountry: string; zipCode: string; } export declare const employeesData: Employee[]; export default employeesData;