15 lines
376 B
TypeScript
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>
|
|
);
|
|
}
|