Files
16gagent/.benchmark/inventory/frontend/app/orders/page.tsx
T
2026-06-06 10:40:48 +08:00

12 lines
368 B
TypeScript

"use client";
import { Card } from "@/components/ui/Card";
import { EmptyState } from "@/components/ui/EmptyState";
export default function OrderPage() {
return (
<div className="space-y-4">
<h1 className="text-xl font-bold text-gray-800"></h1>
<EmptyState icon="📦" title="暂无订单" description="去逛逛吧" />
</div>
);
}