diff options
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> ); } |
