feat: optimize the quick search function

This commit is contained in:
JimmFly
2022-12-15 16:27:10 +08:00
parent 3857749811
commit 3dfae6a5ac
6 changed files with 144 additions and 83 deletions
@@ -0,0 +1,18 @@
import { AllPagesIcon, FavouritesIcon, TrashIcon } from '@blocksuite/icons';
export const List = [
{
title: 'All pages',
href: '/page-list/all',
icon: AllPagesIcon,
},
{
title: 'Favourites',
href: '/page-list/favorite',
icon: FavouritesIcon,
},
{
title: 'Trash',
href: '/page-list/trash',
icon: TrashIcon,
},
];