blob: 2c559684575d35c8133edd9ee32d2174dccc5161 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { View } from "react-native";
import BookmarkList from "@/components/bookmarks/BookmarkList";
export default function Archive() {
return (
<View>
<BookmarkList archived />
</View>
);
}
|