aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/dashboard/favourites.tsx
blob: f62d561e88e1b0c700e938485e73fd52bc7db5e4 (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 BookmarkList from "@/components/bookmarks/BookmarkList";
import PageTitle from "@/components/ui/PageTitle";

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