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