diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-15 21:06:13 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-15 21:06:13 +0000 |
| commit | 267f72f84c6a5979eae696dae8fddee25188c1bb (patch) | |
| tree | 704907d296f82c524c0a359c3c8e5ccab4415b3d /apps/mobile/app/dashboard/archive.tsx | |
| parent | c4d7223115865474f09661cdbfee60a559f4b2c2 (diff) | |
| download | karakeep-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.tsx | 9 |
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> ); } |
