Docs
Cloudflare
Railway
CodeRabbit
Netlify
WorkOS
OpenRouter
Clerk
AG Grid
SerpAPI
Prisma
Sentry
Electric
Unkey
Cloudflare
Railway
CodeRabbit
Netlify
WorkOS
OpenRouter
Clerk
AG Grid
SerpAPI
Prisma
Sentry
Electric
Unkey
Table API Reference
Column API Reference
Row API Reference
Cell API Reference
Header API Reference
Features API Reference
Static Functions API Reference

Lit Example: Composable Tables

import { LitElement, html } from 'lit'
import { customElement } from 'lit/decorators.js'
import './components/users-table'
import './components/products-table'

@customElement('app-root')
class AppRoot extends LitElement {
  createRenderRoot() {
    return this
  }

  protected render() {
    return html`
      <div class="app">
        <h1>Composable Tables Example</h1>
        <p class="description">
          Both tables below use the same <code>useAppTable</code> hook and
          shareable components, but with different data types and column
          configurations.
        </p>

        <!-- Original Users Table -->
        <users-table></users-table>

        <div class="table-divider"></div>

        <!-- Products Table -->
        <products-table></products-table>
      </div>
    `
  }
}
import { LitElement, html } from 'lit'
import { customElement } from 'lit/decorators.js'
import './components/users-table'
import './components/products-table'

@customElement('app-root')
class AppRoot extends LitElement {
  createRenderRoot() {
    return this
  }

  protected render() {
    return html`
      <div class="app">
        <h1>Composable Tables Example</h1>
        <p class="description">
          Both tables below use the same <code>useAppTable</code> hook and
          shareable components, but with different data types and column
          configurations.
        </p>

        <!-- Original Users Table -->
        <users-table></users-table>

        <div class="table-divider"></div>

        <!-- Products Table -->
        <products-table></products-table>
      </div>
    `
  }
}