balls
This commit is contained in:
21
app/dashboard/orders/page.tsx
Normal file
21
app/dashboard/orders/page.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import Dashboard from "@/components/kokonutui/dashboard";
|
||||
import { Package } from "lucide-react";
|
||||
import OrderTable from "@/components/order-table"
|
||||
|
||||
export default function OrdersPage() {
|
||||
return (
|
||||
<Dashboard>
|
||||
<div className="space-y-6">
|
||||
<div className="flex items-center justify-between">
|
||||
<h1 className="text-2xl font-semibold text-gray-900 dark:text-white flex items-center">
|
||||
<Package className="mr-2 h-6 w-6" />
|
||||
Orders
|
||||
</h1>
|
||||
</div>
|
||||
|
||||
{/* ✅ Order Table Component */}
|
||||
<OrderTable />
|
||||
</div>
|
||||
</Dashboard>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user