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

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