blob: e622a3e4346175de72f684a69b356082809dbd46 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import UpdatingBookmarkList from "@/components/bookmarks/UpdatingBookmarkList";
import PageTitle from "@/components/ui/PageTitle";
import CustomSafeAreaView from "@/components/ui/CustomSafeAreaView";
export default function Archive() {
return (
<CustomSafeAreaView>
<UpdatingBookmarkList query={{archived: true}} header={<PageTitle title="🗄️ Archive" />} />
</CustomSafeAreaView>
);
}
|