mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 12:55:00 +00:00
14 lines
363 B
TypeScript
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} />
|
|
</>
|
|
);
|
|
});
|