Internal
Props for the DataTable component.
export interface DataTableProps { data: KenmeiMangaItem[]; itemsPerPage?: number; isLoading?: boolean;} Copy
export interface DataTableProps { data: KenmeiMangaItem[]; itemsPerPage?: number; isLoading?: boolean;}
Array of KenmeiMangaItem objects to display in the table.
Optional
Number of items to show per page. Defaults to 50.
Optional flag to display skeleton rows during initial data load.
Props for the DataTable component.
Source