'use client'; type OrderCardsProps = { orders: any; }; export function AccountOrdersHistory({ orders }: { orders: any }) { return (

Order History

{orders?.length ? : }
); } function EmptyOrders() { return (
You haven't placed any orders yet.
); } function Orders({ orders }: OrderCardsProps) { return ( ); }