aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/dashboard/archive.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-15 21:06:13 +0000
committerMohamedBassem <me@mbassem.com>2024-03-15 21:06:13 +0000
commit267f72f84c6a5979eae696dae8fddee25188c1bb (patch)
tree704907d296f82c524c0a359c3c8e5ccab4415b3d /apps/mobile/app/dashboard/archive.tsx
parentc4d7223115865474f09661cdbfee60a559f4b2c2 (diff)
downloadkarakeep-267f72f84c6a5979eae696dae8fddee25188c1bb.tar.zst
ui(mobile): New header style in the app
Diffstat (limited to 'apps/mobile/app/dashboard/archive.tsx')
-rw-r--r--apps/mobile/app/dashboard/archive.tsx9
1 files changed, 5 insertions, 4 deletions
diff --git a/apps/mobile/app/dashboard/archive.tsx b/apps/mobile/app/dashboard/archive.tsx
index 2c559684..5c86c6fc 100644
--- a/apps/mobile/app/dashboard/archive.tsx
+++ b/apps/mobile/app/dashboard/archive.tsx
@@ -1,10 +1,11 @@
-import { View } from "react-native";
+import { SafeAreaView } from "react-native";
import BookmarkList from "@/components/bookmarks/BookmarkList";
+import PageTitle from "@/components/ui/PageTitle";
export default function Archive() {
return (
- <View>
- <BookmarkList archived />
- </View>
+ <SafeAreaView>
+ <BookmarkList archived header={<PageTitle title="🗄️ Archive" />} />
+ </SafeAreaView>
);
}