Home / Function/ TableFooter() — ui Function Reference

TableFooter() — ui Function Reference

Architecture documentation for the TableFooter() function in table.tsx from the ui codebase.

Entity Profile

Dependency Diagram

graph TD
  7c28e8fa_72ea_85ed_9e45_be8c2280a57d["TableFooter()"]
  fd5364b0_5727_db9e_ec18_30941483300d["table.tsx"]
  7c28e8fa_72ea_85ed_9e45_be8c2280a57d -->|defined in| fd5364b0_5727_db9e_ec18_30941483300d
  style 7c28e8fa_72ea_85ed_9e45_be8c2280a57d fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/v4/examples/base/ui/table.tsx lines 41–52

function TableFooter({ className, ...props }: React.ComponentProps<"tfoot">) {
  return (
    <tfoot
      data-slot="table-footer"
      className={cn(
        "bg-muted/50 border-t font-medium [&>tr]:last:border-b-0",
        className
      )}
      {...props}
    />
  )
}

Subdomains

Frequently Asked Questions

What does TableFooter() do?
TableFooter() is a function in the ui codebase, defined in apps/v4/examples/base/ui/table.tsx.
Where is TableFooter() defined?
TableFooter() is defined in apps/v4/examples/base/ui/table.tsx at line 41.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free