mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-19 11:06:25 +08:00
18 lines
456 B
TypeScript
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;
|