blob: 5c86c6fc9b1abb310389937f0a34e62bbc431c99 (
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 archived header={<PageTitle title="🗄️ Archive" />} />
</SafeAreaView>
);
}
|