aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/dashboard/favourites.tsx
blob: 213cc9189fdb84d2c9101568c36bbd1f87489b7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import UpdatingBookmarkList from "@/components/bookmarks/UpdatingBookmarkList";
import PageTitle from "@/components/ui/PageTitle";
import CustomSafeAreaView from "@/components/ui/CustomSafeAreaView";

export default function Favourites() {
  return (
    <CustomSafeAreaView>
      <UpdatingBookmarkList
        query={{
          archived: false,
          favourited: true,
        }}
        header={<PageTitle title="⭐️ Favourites" />}
      />
    </CustomSafeAreaView>
  );
}