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

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