TableFooterExample() — ui Function Reference
Architecture documentation for the TableFooterExample() function in table-footer.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 62a43124_7959_9ef6_acf6_763d4dc4dd34["TableFooterExample()"] 1da3e1ae_6fcb_36f2_cb38_5be2990c306f["table-footer.tsx"] 62a43124_7959_9ef6_acf6_763d4dc4dd34 -->|defined in| 1da3e1ae_6fcb_36f2_cb38_5be2990c306f style 62a43124_7959_9ef6_acf6_763d4dc4dd34 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/examples/radix/table-footer.tsx lines 57–87
export function TableFooterExample() {
return (
<Table>
<TableCaption>A list of your recent invoices.</TableCaption>
<TableHeader>
<TableRow>
<TableHead className="w-[100px]">Invoice</TableHead>
<TableHead>Status</TableHead>
<TableHead>Method</TableHead>
<TableHead className="text-right">Amount</TableHead>
</TableRow>
</TableHeader>
<TableBody>
{invoices.slice(0, 3).map((invoice) => (
<TableRow key={invoice.invoice}>
<TableCell className="font-medium">{invoice.invoice}</TableCell>
<TableCell>{invoice.paymentStatus}</TableCell>
<TableCell>{invoice.paymentMethod}</TableCell>
<TableCell className="text-right">{invoice.totalAmount}</TableCell>
</TableRow>
))}
</TableBody>
<TableFooter>
<TableRow>
<TableCell colSpan={3}>Total</TableCell>
<TableCell className="text-right">$2,500.00</TableCell>
</TableRow>
</TableFooter>
</Table>
)
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does TableFooterExample() do?
TableFooterExample() is a function in the ui codebase, defined in apps/v4/examples/radix/table-footer.tsx.
Where is TableFooterExample() defined?
TableFooterExample() is defined in apps/v4/examples/radix/table-footer.tsx at line 57.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free