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

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