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/favourites.tsx | |
| parent | c4d7223115865474f09661cdbfee60a559f4b2c2 (diff) | |
| download | karakeep-267f72f84c6a5979eae696dae8fddee25188c1bb.tar.zst | |
ui(mobile): New header style in the app
Diffstat (limited to 'apps/mobile/app/dashboard/favourites.tsx')
| -rw-r--r-- | apps/mobile/app/dashboard/favourites.tsx | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/apps/mobile/app/dashboard/favourites.tsx b/apps/mobile/app/dashboard/favourites.tsx index 42a139f9..6025d514 100644 --- a/apps/mobile/app/dashboard/favourites.tsx +++ b/apps/mobile/app/dashboard/favourites.tsx @@ -1,10 +1,15 @@ -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 Favourites() { return ( - <View> - <BookmarkList archived={false} favourited /> - </View> + <SafeAreaView> + <BookmarkList + archived={false} + favourited + header={<PageTitle title="⭐️ Favourites" />} + /> + </SafeAreaView> ); } |
