Files
AFFiNE-Mirror/packages/component/src/components/list-skeleton.tsx
2023-05-08 17:37:07 -05:00

14 lines
363 B
TypeScript

import { Skeleton } from '@mui/material';
import { memo } from 'react';
export const ListSkeleton = memo(function ListItemSkeleton() {
return (
<>
<Skeleton animation="wave" height={40} />
<Skeleton animation="wave" height={40} />
<Skeleton animation="wave" height={40} />
<Skeleton animation="wave" height={40} />
</>
);
});