Interface DataTablePropsInternal

Props for the DataTable component.

export interface DataTableProps {
data: KenmeiMangaItem[];
itemsPerPage?: number;
isLoading?: boolean;
}
interface DataTableProps {
    data: KenmeiMangaItem[];
    itemsPerPage?: number;
    isLoading?: boolean;
}

Properties

Array of KenmeiMangaItem objects to display in the table.

itemsPerPage?: number

Number of items to show per page. Defaults to 50.

isLoading?: boolean

Optional flag to display skeleton rows during initial data load.