aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mobile/app/dashboard/(tabs)/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/mobile/app/dashboard/(tabs)/index.tsx')
-rw-r--r--packages/mobile/app/dashboard/(tabs)/index.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/mobile/app/dashboard/(tabs)/index.tsx b/packages/mobile/app/dashboard/(tabs)/index.tsx
index d043a9c4..28fa39de 100644
--- a/packages/mobile/app/dashboard/(tabs)/index.tsx
+++ b/packages/mobile/app/dashboard/(tabs)/index.tsx
@@ -1,8 +1,11 @@
import { View } from "react-native";
+import BookmarkList from "@/components/bookmarks/BookmarkList";
+
export default function Home() {
return (
- <View className="flex h-full items-center justify-center gap-4 px-4">
+ <View>
+ <BookmarkList archived={false} />
</View>
);
}