lifetracker/apps/web/app/dashboard/favourites/page.tsx

17 lines
408 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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}
/>
);
}