aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/dashboard/archive.tsx
blob: 2fe5d2743a8f351224b4d2ffe49bc2a258a8471b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import UpdatingBookmarkList from "@/components/bookmarks/UpdatingBookmarkList";
import CustomSafeAreaView from "@/components/ui/CustomSafeAreaView";
import PageTitle from "@/components/ui/PageTitle";

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