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

Create a table row skeleton

Examples

Example 1

const skeleton = createTableRowSkeleton({ columns: 4 });

Parameters

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

Return Type

HTMLTableRowElement

Usage

import { createTableRowSkeleton } from ".";