blob: 28fa39deb8886cf0669f18c27b3a77771f661940 (
plain) (
blame)
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 Home() {
return (
<View>
<BookmarkList archived={false} />
</View>
);
}
|