Files
2025-03-24 13:43:42 +00:00

15 lines
376 B
TypeScript

import Layout from "@/components/layout/layout";
import PageLoading from "@/components/dashboard/page-loading";
export default function OrdersLoading() {
return (
<Layout>
<PageLoading
title="Loading orders..."
subtitle="Please wait while we fetch your order history"
layout="table"
itemsCount={10}
/>
</Layout>
);
}