12 lines
368 B
TypeScript
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>
|
|
);
|
|
} |