blob: 42a139f9a09280e8f3bfceb99fdd4312694ed5a7 (
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 Favourites() {
return (
<View>
<BookmarkList archived={false} favourited />
</View>
);
}
|