feat: add list skeleton in public workspace (#1278)

This commit is contained in:
Himself65
2023-03-02 15:11:37 -06:00
committed by GitHub
parent 0507300a29
commit 9d46b358d4
3 changed files with 30 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
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} />
</>
);
});

View File

@@ -1,4 +1,5 @@
// export * from './components/BlockSuiteEditor';
export * from './components/ListSkeleton';
export * from './styles';
export * from './ui/breadcrumbs';
export * from './ui/button';