function createTableSkeleton
createTableSkeleton(props?:
{ rows?: number; columns?: number; showCheckbox?: boolean; showActions?: boolean; }
& Pick<
"darkMode" | "animate" | "animation" | "class"
>
): HTMLTableSectionElement

Create multiple table row skeletons

Parameters

optional
props:
{ rows?: number; columns?: number; showCheckbox?: boolean; showActions?: boolean; }
& Pick<
"darkMode" | "animate" | "animation" | "class"
>

Return Type

HTMLTableSectionElement

Usage

import { createTableSkeleton } from ".";