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

export default function Archive() {
  return (
    <SafeAreaView>
      <BookmarkList query={{archived: true}} header={<PageTitle title="🗄️ Archive" />} />
    </SafeAreaView>
  );
}