blob: be20bd2f057cf56043411990a328092c0991148a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import Bookmarks from "@/components/dashboard/bookmarks/Bookmarks";
export default async function FavouritesBookmarkPage() {
return (
<Bookmarks
header={
<div className="flex items-center justify-between">
<p className="text-2xl">⭐️ Favourites</p>
</div>
}
query={{ favourited: true }}
showDivider={true}
showEditorCard={true}
/>
);
}
|