mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-09 21:25:45 +08:00
feat: add empty cover for PageList
This commit is contained in:
@@ -1,12 +1,17 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import { Empty } from '@/ui/empty';
|
||||||
export const Empty = () => {
|
export const PageListEmpty = () => {
|
||||||
return (
|
return (
|
||||||
<div style={{ textAlign: 'center' }}>
|
<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>Tips: Click Add to Favourites/Trash and the page will appear here.</p>
|
||||||
<p>(Designer is grappling with designing)</p>
|
<p>(Designer is grappling with designing)</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Empty;
|
export default PageListEmpty;
|
||||||
|
|||||||
Reference in New Issue
Block a user