master @ 13 LINES
[ HISTORY ] [ UP ]
┌─ ASTRO ────────────────────────────────────────────────────────────────────┐
│ --- │
│ interface Props { │
│ class?: string; │
│ [key: string]: any; // Allow data-* attributes │
│ } │
│ │
│ const { class: className = "", ...attrs } = Astro.props; │
│ --- │
│ │
│ <div class={`table-row ${className}`.trim()} {...attrs}> │
│ <slot /> │
│ </div> │
└────────────────────────────────────────────────────────────────────────────────────┘
┌─ ASTRO ──────────────────────────────┐
│ --- │
│ interface Props { │
│ class?: string; │
│ [key: string]: any; // Allow data-* attrib │
│ utes │
│ } │
│ │
│ const { class: className = "", ...attrs } = │
│ Astro.props; │
│ --- │
│ │
│ <div class={`table-row ${className}`.trim()} │
│ {...attrs}> │
│ <slot /> │
│ </div> │
└──────────────────────────────────────────────┘
──────────────────────────────────────────────────────────────────────────────────────
OOKNET
────────────────────────────────────────────────
OOKNET