0.4.0

Theme Switcher

Table

A responsive table component.

A list of your recent invoices.
InvoiceStatusMethodAmount
INV001PaidCredit Card$250.00
INV002PendingPayPal$150.00
INV003UnpaidBank Transfer$350.00
INV004PaidCredit Card$450.00
INV005PaidPayPal$550.00
INV006PendingBank Transfer$200.00
INV007UnpaidCredit Card$300.00
Total$2,500.00
import { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow } from "@ngrok/mantle/table";

A list of your recent invoices.
		
			Invoice
			Status
			Method
			Amount
		
	
		{invoices.map((invoice) => (
			
				{invoice.invoice}
				{invoice.paymentStatus}
				{invoice.paymentMethod}
				{invoice.totalAmount}
			
		))}
	
		
			Total
			$2,500.00