1 2 3 4 5 6 7 8 9 10 11
import { View } from "react-native"; import BookmarkList from "@/components/bookmarks/BookmarkList"; export default function Favourites() { return ( <View> <BookmarkList archived={false} favourited /> </View> ); }