Files
ember-market-frontend/app/dashboard/chats/loading.tsx
2025-03-24 13:43:42 +00:00

15 lines
380 B
TypeScript

import Layout from "@/components/layout/layout";
import PageLoading from "@/components/dashboard/page-loading";
export default function ChatsLoading() {
return (
<Layout>
<PageLoading
title="Loading conversations..."
subtitle="Please wait while we fetch your chat messages"
layout="list"
itemsCount={7}
/>
</Layout>
);
}