mirror of
https://github.com/docmost/docmost.git
synced 2026-05-18 23:44:24 +08:00
22 lines
784 B
TypeScript
22 lines
784 B
TypeScript
import { Skeleton } from '@mantine/core';
|
|
|
|
export default function PageListSkeleton() {
|
|
return (
|
|
<>
|
|
<Skeleton height={25} my="xs" radius="xs" />
|
|
<Skeleton height={25} my="xs" radius="xs" />
|
|
<Skeleton height={25} my="xs" radius="xs" />
|
|
<Skeleton height={25} my="xs" radius="xs" />
|
|
<Skeleton height={25} my="xs" radius="xs" />
|
|
<Skeleton height={25} my="xs" radius="xs" />
|
|
<Skeleton height={25} my="xs" radius="xs" />
|
|
<Skeleton height={25} my="xs" radius="xs" />
|
|
<Skeleton height={25} my="xs" radius="xs" />
|
|
<Skeleton height={25} my="xs" radius="xs" />
|
|
<Skeleton height={25} my="xs" radius="xs" />
|
|
<Skeleton height={25} my="xs" radius="xs" />
|
|
<Skeleton height={25} my="xs" radius="xs" />
|
|
</>
|
|
);
|
|
}
|