blob: 310117b170708d442c7223ed2c48f1ebdfd014aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import Bookmarks from "@/components/dashboard/bookmarks/Bookmarks";
export default async function FavouritesBookmarkPage() {
return (
<div className="continer mt-4">
<Bookmarks
header={<p className="text-2xl">⭐️ Favourites</p>}
query={{ favourited: true, archived: false }}
showDivider={true}
/>
</div>
);
}
|