import type Table from "./Table.js"; import TableRow from "./TableRow.js"; import TableCell from "./TableCell.js"; import DropIndicator from "./DropIndicator.js"; import BusyIndicator from "./BusyIndicator.js"; export default function TableTemplate(this: Table) { return ( <>
{ this.rows.length === 0 && { this.noData.length > 0 ? : this._effectiveNoDataText } } { this.loading && }
{ this.rows.length > 0 && this._getGrowing()?.hasGrowingComponent() && } ); }