Orders Table
Free Table React component — OrdersTable. MIT licensed, copy-paste ready for Next.js and Tailwind CSS.
E-commerce orders table — sort by date, total, or status. The standard admin dashboard orders view.
Preview
Recent orders
Last 7 days
| Order | Customer | |||
|---|---|---|---|---|
| #3210 | Northwind Studio | Mar 8 | $248.00 | Fulfilled |
| #3209 | Harbor Labs | Mar 8 | $92.00 | Processing |
| #3208 | Elm & Co. | Mar 7 | $156.00 | Fulfilled |
| #3207 | Papertrail | Mar 6 | $64.00 | Cancelled |
| #3206 | Studio Nine | Mar 5 | $312.00 | Fulfilled |
Setup
How to use
Free for personal and commercial use. No UI attribution required. Include the MIT copyright notice when copying component source into your project. Read the MIT license.
- 1
Run in your terminal:
$npm install clsx tailwind-merge lucide-react - 2
Copy
lib/cn.tsbelow. Skip if you already havecn(). - 3
Copy the code below and create
components/table/orders-table.tsxin your project. - 4
Import and render:
Exampleimport { OrdersTable } from "@/components/table/orders-table";
lib/cn.ts
import { cn } from '@/lib/cn';// Full source is available in the repository checkout.
components/table/orders-table.tsx
// Full source: components/components/table/orders-table.tsx// The Cloudflare worker does not expose the source tree at request time.