'use client'; import {Heading} from '@astryxdesign/core/Text'; import {Badge} from '@astryxdesign/core/Badge'; import type {TablePartSpec} from '@/features/loyaly-ai/types/chat'; export function TableBlock({tables}: {tables: TablePartSpec[]}) { if (!tables || tables.length === 0) return null; return (
| {col.header} | ))}
|---|
|
{isStatus ? (
|
);
})}