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