(title: string, description: string)
| 21 | } |
| 22 | |
| 23 | export function renderEmptyStateHtml(title: string, description: string): string { |
| 24 | return ` |
| 25 | <div class="empty-state"> |
| 26 | <h3>${escapeHtml(title)}</h3> |
| 27 | <p>${escapeHtml(description)}</p> |
| 28 | </div> |
| 29 | `; |
| 30 | } |
| 31 | |
| 32 | export function renderSharedCardHtml(item: SharedCardRenderItem): string { |
| 33 | const role = item.role ?? "listitem"; |
no test coverage detected