Files
AFFiNE-Mirror/packages/app/src/components/page-list/empty.tsx
T
2022-12-23 16:58:38 +08:00

18 lines
456 B
TypeScript

import React from 'react';
import { Empty } from '@/ui/empty';
export const PageListEmpty = () => {
return (
<div style={{ textAlign: 'center' }}>
<Empty
width={800}
height={300}
sx={{ marginTop: '100px', marginBottom: '30px' }}
/>
<p>Tips: Click Add to Favourites/Trash and the page will appear here.</p>
<p>(Designer is grappling with designing)</p>
</div>
);
};
export default PageListEmpty;